Skip to content

Commit

Permalink
fix(esbuild-meta): fix versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherPHolder committed Apr 15, 2024
1 parent 8963a1f commit 7969e24
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 1 deletion.
14 changes: 14 additions & 0 deletions package-lock.json

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

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@
"jsdom": "22.1.0",
"jsonc-eslint-parser": "^2.1.0",
"ng-packagr": "17.1.2",
"ngx-deploy-npm": "^8.0.1",
"nx": "18.2.1",
"nx-release": "^3.3.0",
"postcss": "^8.4.5",
Expand Down
20 changes: 19 additions & 1 deletion packages/esbuild-meta/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,26 @@
},
"version": {
"executor": "@jscutlery/semver:version",
"dependsOn": [{ "target": "build" }],
"options": {
"preset": "angular"
"preset": "angular",
"postTargets": ["cli:npm", "cli:github"],
"commitMessageFormat": "release(${projectName}): ${version}",
"noVerify": true,
"push": true
}
},
"github": {
"executor": "@jscutlery/semver:github",
"options": {
"tag": "${tag}",
"notes": "${notes}"
}
},
"npm": {
"executor": "ngx-deploy-npm:deploy",
"options": {
"access": "public"
}
},
"release": {
Expand Down

0 comments on commit 7969e24

Please sign in to comment.