Skip to content

Commit

Permalink
fix(esbuild-meta): fix release config
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherPHolder committed Jun 29, 2024
1 parent d32e6b9 commit a60cd39
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,13 @@
"projects": ["esbuild-meta"],
"projectsRelationship": "independent",
"version": {
"conventionalCommits": true,
"preVersionCommand": "npx nx run-many -t build"
"preVersionCommand": "npx nx run-many -t build",
"generatorOptions": {
"specifierSource": "conventional-commits",
"currentVersionResolver": "git-tag",
"fallbackCurrentVersionResolver": "disk",
"packageRoot": "dist/packages/{projectName}"
}
},
"changelog": {
"projectChangelogs": {
Expand All @@ -83,6 +88,8 @@
},
"releaseTagPattern": "release/{projectName}/{version}",
"git": {
"commit": true,
"tag": true,
"commitMessage": "ci({projectName}): publish v{version}"
}
},
Expand Down

0 comments on commit a60cd39

Please sign in to comment.