Skip to content

Commit

Permalink
feat: move umd bundle up and out of the dist directory
Browse files Browse the repository at this point in the history
BREAKING CHANGE:
The umd path for system.js users has changed from:
```
node_modules/angular-calendar/dist/umd/angular-calendar.js
```

to
```
node_modules/angular-calendar/umd/angular-calendar.js
```
  • Loading branch information
Matt Lewis committed Nov 19, 2017
1 parent 72ae546 commit 59d0049
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ You can find quick start examples for all common module bundlers in the [build-t
### Usage without a module bundler

```html
<script src="node_modules/angular-calendar/dist/umd/angular-calendar.js"></script>
<script src="node_modules/angular-calendar/umd/angular-calendar.js"></script>
<script>
// everything is exported angularCalendar namespace
</script>
Expand Down
1 change: 0 additions & 1 deletion webpack.config.umd.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ export default {
failOnError: true
}),
new ExtractTextPlugin('./../css/angular-calendar.css'),
new ExtractTextPlugin('./../dist/css/angular-calendar.css'),
new webpack.SourceMapDevToolPlugin({
filename: 'angular-calendar.js.map',
test: /\.js($|\?)/i
Expand Down

0 comments on commit 59d0049

Please sign in to comment.