Skip to content

Commit 10d1adf

Browse files
committed
types not depending on pack
1 parent 6c9cc95 commit 10d1adf

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

nx.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@
2121
},
2222
"build:tarball": {
2323
"dependsOn": [
24-
"^build:pack",
25-
"^build:types"
24+
"build:pack"
2625
],
2726
"outputs": [
2827
"{projectRoot}/build"
2928
]
3029
},
3130
"build:pack": {
3231
"dependsOn": [
32+
"build:types",
3333
"^build:pack",
3434
"^build:types"
3535
],
@@ -41,7 +41,6 @@
4141
},
4242
"build:types": {
4343
"dependsOn": [
44-
"^build:pack",
4544
"^build:types"
4645
],
4746
"outputs": [

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"scripts": {
4-
"build": "node ./scripts/verify-packages-versions.js && run-s build:types build:pack build:bundle",
4+
"build": "node ./scripts/verify-packages-versions.js && run-s build:types build:pack build:bundle",
55
"build:bundle": "lerna run build:bundle",
66
"build:dev": "run-p build:types build:pack",
77
"build:dev:filter": "lerna run build:dev --include-filtered-dependencies --include-filtered-dependents --scope",

0 commit comments

Comments
 (0)