Skip to content

Commit 4ced6e5

Browse files
committed
chore: use array syntax for package group
1 parent c6a253c commit 4ced6e5

File tree

4 files changed

+21
-35
lines changed

4 files changed

+21
-35
lines changed

.release-it.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@
4141
},
4242
"hooks": {
4343
"before:bump": "pnpm exec nx package core",
44-
"after:bump": ["git checkout -- package.json", "node tools/scripts/update-package-group.mjs"]
44+
"after:bump": "git checkout -- package.json"
4545
}
4646
}

libs/core/package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -37,19 +37,19 @@
3737
"schematics": "./plugin/generators.json",
3838
"nx-migrations": {
3939
"migrations": "./plugin/migrations.json",
40-
"packageGroup": {
41-
"angular-three-soba": "*",
42-
"angular-three-postprocessing": "*",
43-
"angular-three-cannon": "*"
44-
}
40+
"packageGroup": [
41+
"angular-three-soba",
42+
"angular-three-postprocessing",
43+
"angular-three-cannon"
44+
]
4545
},
4646
"ng-update": {
4747
"migrations": "./plugin/migrations.json",
48-
"packageGroup": {
49-
"angular-three-soba": "*",
50-
"angular-three-postprocessing": "*",
51-
"angular-three-cannon": "*"
52-
}
48+
"packageGroup": [
49+
"angular-three-soba",
50+
"angular-three-postprocessing",
51+
"angular-three-cannon"
52+
]
5353
},
5454
"web-types": "./web-types.json"
5555
}

libs/plugin/package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@
33
"generators": "./generators.json",
44
"nx-migrations": {
55
"migrations": "./migrations.json",
6-
"packageGroup": {
7-
"angular-three-soba": "*",
8-
"angular-three-postprocessing": "*",
9-
"angular-three-cannon": "*"
10-
}
6+
"packageGroup": [
7+
"angular-three-soba",
8+
"angular-three-postprocessing",
9+
"angular-three-cannon"
10+
]
1111
},
1212
"ng-update": {
1313
"migrations": "./migrations.json",
14-
"packageGroup": {
15-
"angular-three-soba": "*",
16-
"angular-three-postprocessing": "*",
17-
"angular-three-cannon": "*"
18-
}
14+
"packageGroup": [
15+
"angular-three-soba",
16+
"angular-three-postprocessing",
17+
"angular-three-cannon"
18+
]
1919
},
2020
"dependencies": {
2121
"@nx/devkit": "16.8.1"

tools/scripts/update-package-group.mjs

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)