Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add UMD Ids to external modules in store package #4522

Merged
merged 3 commits into from
Aug 24, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add UMB Ids to external modules in store package
  • Loading branch information
nwmac committed Aug 20, 2020
commit 604a33535c4b4967cb1c589527b1acc14c1fe668
15 changes: 13 additions & 2 deletions src/frontend/packages/store/ng-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@
"$schema": "../../../../node_modules/ng-packagr/ng-package.schema.json",
"dest": "../../../../dist/store",
"lib": {
"entryFile": "src/public-api.ts"
"entryFile": "src/public-api.ts",
"umdModuleIds": {
"normalizr": "normalizr",
"rxjs-spy/operators": "rxjsSpy_operators",
"rxjs-spy/operators/tag": "rxjsSpy_operators_tag",
"ngrx-store-localstorage": "ngrxStoreLocalstorage",
"@ngrx/store": "ngrx_store",
"@ngrx/effects": "effects",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ngrx_effects

"immer": "immer",
"util": "util",
"@ngrx/router-store": "ngrx_routerSstore"
}
}
}
}
5 changes: 4 additions & 1 deletion src/frontend/packages/store/testing/ng-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
"$schema": "../../../../../node_modules/ng-packagr/ng-package.schema.json",
"dest": "../../../../dist/store/testing",
"lib": {
"entryFile": "public-api.ts"
"entryFile": "public-api.ts",
"umdModuleIds": {
"@ngrx/store": "ngrx_store"
}
}
}