Skip to content

Commit

Permalink
fix: publish script in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
peterroe committed Mar 14, 2024
1 parent a81982d commit 90a3445
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
4 changes: 4 additions & 0 deletions templates/cli-starter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
"author": "peterroe",
"license": "MIT",
"type": "module",
"files": [
"dist",
"package.json"
],
"keywords": [
"cli",
"typescript",
Expand Down
6 changes: 5 additions & 1 deletion templates/ts-starter-vite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
"author": "peterroe",
"license": "MIT",
"type": "module",
"files": [
"dist",
"package.json"
],
"keywords": [
"typescript"
],
Expand All @@ -32,7 +36,7 @@
"fix": "eslint --fix \"**/*.{ts,js}\"",
"start": "esno src/index.ts",
"test": "vitest",
"release": "pnpm build bumpp && npm publish",
"release": "pnpm build && bumpp && npm publish",
"typecheck": "tsc --noEmit",
"git-hook-init": "git init && husky install && husky add .husky/pre-commit 'npm run lint && npm run typecheck'"
},
Expand Down
6 changes: 5 additions & 1 deletion templates/ts-starter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
"author": "peterroe",
"license": "MIT",
"type": "module",
"files": [
"dist",
"package.json"
],
"keywords": [
"typescript",
"template"
Expand Down Expand Up @@ -33,7 +37,7 @@
"fix": "eslint --fix \"**/*.{ts,js}\"",
"start": "esno src/index.ts",
"test": "vitest",
"release": "pnpm build bumpp && npm publish",
"release": "pnpm build && bumpp && npm publish",
"typecheck": "tsc --noEmit",
"git-hook-init": "git init && husky install && husky add .husky/pre-commit 'npm run lint && npm run typecheck'"
},
Expand Down

0 comments on commit 90a3445

Please sign in to comment.