Skip to content

Commit 59d0049

Browse files
author
Matt Lewis
committed
feat: move umd bundle up and out of the dist directory
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 ```
1 parent 72ae546 commit 59d0049

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ You can find quick start examples for all common module bundlers in the [build-t
7272
### Usage without a module bundler
7373

7474
```html
75-
<script src="node_modules/angular-calendar/dist/umd/angular-calendar.js"></script>
75+
<script src="node_modules/angular-calendar/umd/angular-calendar.js"></script>
7676
<script>
7777
// everything is exported angularCalendar namespace
7878
</script>

webpack.config.umd.ts

-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@ export default {
9999
failOnError: true
100100
}),
101101
new ExtractTextPlugin('./../css/angular-calendar.css'),
102-
new ExtractTextPlugin('./../dist/css/angular-calendar.css'),
103102
new webpack.SourceMapDevToolPlugin({
104103
filename: 'angular-calendar.js.map',
105104
test: /\.js($|\?)/i

0 commit comments

Comments
 (0)