Skip to content

Commit 4f0711a

Browse files
build(repo): migrate to ngx-deploy-npm v8 (#222)
Co-authored-by: Dmitriy Stepanenko <[email protected]>
1 parent b740703 commit 4f0711a

File tree

4 files changed

+27
-14
lines changed

4 files changed

+27
-14
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
"jest-environment-jsdom": "29.4.3",
6565
"jsonc-eslint-parser": "^2.1.0",
6666
"kill-port": "2.0.1",
67-
"ngx-deploy-npm": "^6.0.0",
67+
"ngx-deploy-npm": "8.0.1",
6868
"nx": "17.3.0",
6969
"prettier": "^2.8.0",
7070
"pretty-quick": "^3.1.3",

packages/create-qwik-nx/project.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@
6262
"push": false,
6363
"releaseAs": "patch",
6464
"postTargets": [
65+
"create-qwik-nx:build",
6566
"create-qwik-nx:publish",
6667
"create-qwik-nx:push-to-github"
6768
]
@@ -70,13 +71,15 @@
7071
"publish": {
7172
"executor": "ngx-deploy-npm:deploy",
7273
"options": {
73-
"access": "public"
74+
"access": "public",
75+
"distFolderPath": "dist/packages/create-qwik-nx"
7476
},
7577
"configurations": {
7678
"local": {
7779
"registry": "http://localhost:4873"
7880
}
79-
}
81+
},
82+
"dependsOn": ["build"]
8083
},
8184
"push-to-github": {
8285
"executor": "@jscutlery/semver:github",

packages/qwik-nx/project.json

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,11 @@
6767
"noVerify": true,
6868
"push": false,
6969
"releaseAs": "patch",
70-
"postTargets": ["qwik-nx:publish", "qwik-nx:push-to-github"]
70+
"postTargets": [
71+
"qwik-nx:build",
72+
"qwik-nx:publish",
73+
"qwik-nx:push-to-github"
74+
]
7175
},
7276
"configurations": {
7377
"patch": {},
@@ -78,14 +82,19 @@
7882
"releaseAs": "major"
7983
},
8084
"previous": {
81-
"postTargets": ["qwik-nx:publish:previous", "qwik-nx:push-to-github"]
85+
"postTargets": [
86+
"qwik-nx:build",
87+
"qwik-nx:publish:previous",
88+
"qwik-nx:push-to-github"
89+
]
8290
}
8391
}
8492
},
8593
"publish": {
8694
"executor": "ngx-deploy-npm:deploy",
8795
"options": {
88-
"access": "public"
96+
"access": "public",
97+
"distFolderPath": "dist/packages/qwik-nx"
8998
},
9099
"configurations": {
91100
"local": {
@@ -94,7 +103,8 @@
94103
"previous": {
95104
"tag": "previous"
96105
}
97-
}
106+
},
107+
"dependsOn": ["build"]
98108
},
99109
"push-to-github": {
100110
"executor": "@jscutlery/semver:github",

pnpm-lock.yaml

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)