Skip to content

Commit

Permalink
build(repo): migrate to ngx-deploy-npm v8 (#222)
Browse files Browse the repository at this point in the history
Co-authored-by: Dmitriy Stepanenko <[email protected]>
  • Loading branch information
dianjuar and dmitry-stepanenko authored Feb 13, 2024
1 parent b740703 commit 4f0711a
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 14 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
"jest-environment-jsdom": "29.4.3",
"jsonc-eslint-parser": "^2.1.0",
"kill-port": "2.0.1",
"ngx-deploy-npm": "^6.0.0",
"ngx-deploy-npm": "8.0.1",
"nx": "17.3.0",
"prettier": "^2.8.0",
"pretty-quick": "^3.1.3",
Expand Down
7 changes: 5 additions & 2 deletions packages/create-qwik-nx/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
"push": false,
"releaseAs": "patch",
"postTargets": [
"create-qwik-nx:build",
"create-qwik-nx:publish",
"create-qwik-nx:push-to-github"
]
Expand All @@ -70,13 +71,15 @@
"publish": {
"executor": "ngx-deploy-npm:deploy",
"options": {
"access": "public"
"access": "public",
"distFolderPath": "dist/packages/create-qwik-nx"
},
"configurations": {
"local": {
"registry": "http://localhost:4873"
}
}
},
"dependsOn": ["build"]
},
"push-to-github": {
"executor": "@jscutlery/semver:github",
Expand Down
18 changes: 14 additions & 4 deletions packages/qwik-nx/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,11 @@
"noVerify": true,
"push": false,
"releaseAs": "patch",
"postTargets": ["qwik-nx:publish", "qwik-nx:push-to-github"]
"postTargets": [
"qwik-nx:build",
"qwik-nx:publish",
"qwik-nx:push-to-github"
]
},
"configurations": {
"patch": {},
Expand All @@ -78,14 +82,19 @@
"releaseAs": "major"
},
"previous": {
"postTargets": ["qwik-nx:publish:previous", "qwik-nx:push-to-github"]
"postTargets": [
"qwik-nx:build",
"qwik-nx:publish:previous",
"qwik-nx:push-to-github"
]
}
}
},
"publish": {
"executor": "ngx-deploy-npm:deploy",
"options": {
"access": "public"
"access": "public",
"distFolderPath": "dist/packages/qwik-nx"
},
"configurations": {
"local": {
Expand All @@ -94,7 +103,8 @@
"previous": {
"tag": "previous"
}
}
},
"dependsOn": ["build"]
},
"push-to-github": {
"executor": "@jscutlery/semver:github",
Expand Down
14 changes: 7 additions & 7 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 4f0711a

Please sign in to comment.