Skip to content

Commit e92899b

Browse files
authored
Merge pull request #1407 from rx-angular/turn-off-update-deps
fix: turn off updating deps in dist package.json
2 parents 9ebbe9a + faec3d4 commit e92899b

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

libs/cdk/project.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@
4848
"executor": "@nrwl/angular:package",
4949
"options": {
5050
"tsConfig": "libs/cdk/tsconfig.lib.json",
51-
"project": "libs/cdk/ng-package.json"
51+
"project": "libs/cdk/ng-package.json",
52+
"updateBuildableProjectDepsInPackageJson": false
5253
},
5354
"outputs": ["dist/libs/cdk"]
5455
},

libs/state/project.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
"executor": "@nrwl/angular:package",
99
"options": {
1010
"tsConfig": "libs/state/tsconfig.lib.json",
11-
"project": "libs/state/ng-package.json"
11+
"project": "libs/state/ng-package.json",
12+
"updateBuildableProjectDepsInPackageJson": false
1213
},
1314
"outputs": ["dist/libs/state"],
1415
"dependsOn": [

libs/template/project.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
"executor": "@nrwl/angular:package",
99
"options": {
1010
"tsConfig": "libs/template/tsconfig.lib.json",
11-
"project": "libs/template/ng-package.json"
11+
"project": "libs/template/ng-package.json",
12+
"updateBuildableProjectDepsInPackageJson": false
1213
},
1314
"dependsOn": [
1415
{

0 commit comments

Comments
 (0)