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 cbfe7cb commit a3dda38
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,10 @@
"version": {
"conventionalCommits": true,
"preVersionCommand": "npx nx run-many -t build",
"packageRoot": "dist/packages/{projectName}"
"generatorOptions": {
"packageRoot": "dist/packages/{projectName}",
"currentVersionResolver": "git-tag"
}
},
"changelog": {
"projectChangelogs": {
Expand Down
2 changes: 1 addition & 1 deletion packages/esbuild-meta/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# @app-speed/esbuild-meta

Esbuild Meta is a CLI tool to help you analyse the meta output of esbuild.
Esbuild Meta is a CLI tool to help you analyse the meta output of esbuild
2 changes: 1 addition & 1 deletion packages/esbuild-meta/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ import { filterMetaCommand } from './lib/filter-meta.js';

yargs(hideBin(argv)).command('$0', 'Default Command is filter', filterMetaCommand).parse();

console.log('Esbuild Meta Completed Successfully!');
console.log('Esbuild Meta Completed Successfully!!!');

0 comments on commit a3dda38

Please sign in to comment.