Skip to content

Commit

Permalink
chore: fix snazzy-info-window rollup config
Browse files Browse the repository at this point in the history
  • Loading branch information
sebholstein committed Aug 22, 2017
1 parent 5cbc515 commit b108ef9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion package.json
Expand Up @@ -25,9 +25,10 @@
"packagejson": "node ./scripts/create-package-json.js",
"copyassets": "node ./scripts/copy-package-assets.js",
"scripts": "npm run ngc:esm && npm run bundle",
"bundle": "npm run bundle:umd:core && npm run bundle:umd:jsmarkerclusterer",
"bundle": "npm run bundle:umd:core && npm run bundle:umd:jsmarkerclusterer && npm run bundle:umd:snazzy",
"bundle:umd:core": "rollup -c rollup.core.config.js",
"bundle:umd:jsmarkerclusterer": "rollup -c rollup.js-marker-clusterer.config.js",
"bundle:umd:snazzy": "rollup -c rollup.snazzy-info-window.config.js",
"ngc:esm": "ngc -p tsconfig.json",
"clang:format": "clang-format --glob=packages/**/*.ts -i",
"postngc:esm": "mkdir -p dist/ && cp -R .tmp/esm/* dist/ && rimraf packages/**/*.ngfactory.ts",
Expand Down
2 changes: 1 addition & 1 deletion rollup.snazzy-info-window.config.js
Expand Up @@ -18,5 +18,5 @@ export default {
'@agm/core': 'ngmaps.core'
},
context: 'window',
external: ['rxjs', '@angular/core', 'rxjs/Observable']
external: ['rxjs', '@angular/core', 'rxjs/Observable', '@agm/core']
}

0 comments on commit b108ef9

Please sign in to comment.