Skip to content

Commit

Permalink
Release v3.0.2
Browse files Browse the repository at this point in the history
- Update rollup external deps function
- Update rollup and plugins
- Update git submodules
  • Loading branch information
Vladimir Vershinin committed Jan 9, 2019
1 parent 955ae3c commit 5210eba
Show file tree
Hide file tree
Showing 9 changed files with 903 additions and 1,802 deletions.
4 changes: 4 additions & 0 deletions .idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,4 +130,4 @@ npm test

## License

MIT (c) 2016-2018, Vladimir Vershinin
MIT (c) 2016-2019, Vladimir Vershinin
2 changes: 1 addition & 1 deletion build/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ module.exports = {
'process.env.NODE_ENV': `'${env}'`,
PKG_VERSION: `'${packageJson.version}'`,
},
external: id => /(babel-runtime|openlayers|ol\/.+)/i.test(id),
external: id => /^(babel-runtime|openlayers|ol\/.+)$/i.test(id),
}
3 changes: 2 additions & 1 deletion build/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ function plugins (options = {}) {
sourceMap: true,
include: [
'src/**/*',
'node_modules/ol/**/*',
],
}),
resolve({
Expand All @@ -25,7 +26,7 @@ function plugins (options = {}) {
if (options.min) {
plugins.push(uglify({
mangle: true,
sourceMap: true,
sourcemap: true,
compress: {
warnings: false,
},
Expand Down
2 changes: 1 addition & 1 deletion modules/babel-plugin-merge-imports
Loading

0 comments on commit 5210eba

Please sign in to comment.