Skip to content

Commit

Permalink
build(ng-packager): fix ng-packager config
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel Guerrero committed Jul 12, 2022
1 parent 8519a9d commit 9f0b1d9
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion libs/ngrx-traits/common/ng-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"$schema": "../../../node_modules/ng-packagr/ng-package.schema.json",
"dest": "../../../dist/libs/ngrx-traits/common",
"lib": {
"entryFile": "src/lib/public_api.ts"
"entryFile": "src/lib/index.ts"
}
}
12 changes: 6 additions & 6 deletions libs/ngrx-traits/common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
"postinstall": "ngcc"
},
"peerDependencies": {
"@angular/common": "^13.0.0",
"@angular/compiler": "^13.0.0",
"@angular/core": "^13.0.0",
"@ngrx/effects": "^13.0.0",
"@ngrx/entity": "^13.0.0",
"@ngrx/store": "^13.0.0"
"@angular/common": "^14.0.0",
"@angular/compiler": "^14.0.0",
"@angular/core": "^14.0.0",
"@ngrx/effects": "^14.0.0",
"@ngrx/entity": "^14.0.0",
"@ngrx/store": "^14.0.0"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion libs/ngrx-traits/core/ng-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"$schema": "../../../node_modules/ng-packagr/ng-package.schema.json",
"dest": "../../../dist/libs/ngrx-traits/core",
"lib": {
"entryFile": "src/lib/public_api.ts"
"entryFile": "src/lib/index.ts"
}
}
12 changes: 6 additions & 6 deletions libs/ngrx-traits/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
"postinstall": "ngcc"
},
"peerDependencies": {
"@angular/common": "^13.0.0",
"@angular/compiler": "^13.0.0",
"@angular/core": "^13.0.0",
"@ngrx/effects": "^13.0.0",
"@ngrx/entity": "^13.0.0",
"@ngrx/store": "^13.0.0"
"@angular/common": "^14.0.0",
"@angular/compiler": "^14.0.0",
"@angular/core": "^14.0.0",
"@ngrx/effects": "^14.0.0",
"@ngrx/entity": "^14.0.0",
"@ngrx/store": "^14.0.0"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion libs/ngrx-traits/core/testing/ng-package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "../../../node_modules/ng-packagr/ng-package.schema.json",
"lib": {
"entryFile": "src/public_api.ts"
"entryFile": "src/index.ts"
}
}

0 comments on commit 9f0b1d9

Please sign in to comment.