Skip to content

Commit

Permalink
fix: rm dist before bundling
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonnalley committed Feb 15, 2024
1 parent 2834cf2 commit 1ff563d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
"repository": "oclif/plugin-test-esbuild",
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"bundle": "esbuild src/index.ts --bundle --platform=node --outfile=dist/index.js",
"bundle": "shx rm -rf dist && esbuild src/index.ts --bundle --platform=node --outfile=dist/index.js",
"lint": "eslint . --ext .ts",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "yarn lint",
Expand Down

0 comments on commit 1ff563d

Please sign in to comment.