Skip to content

Commit

Permalink
build: update package.json scripts to use npm
Browse files Browse the repository at this point in the history
  • Loading branch information
theodrosyimer committed Feb 28, 2024
1 parent a955574 commit 8013da6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"scripts": {
"build": "tsc -p tsconfig.json && chmod 755 dist/index.js",
"dev": "tsc -w -p tsconfig.json",
"dev:reset": "(rm -rf dist || true) && pnpm build && pnpm link-cli && pnpm dev",
"link-cli": "(yarn unlink --global || true) && chmod 755 dist/index.js && yarn link --global",
"dev:reset": "(rm -rf dist || true) && npm run build && npm run link && npm run dev",
"link": "(yarn unlink --global || true) && chmod 755 dist/index.js && yarn link --global",
"lint": "eslint .",
"release": "release-it",
"test": "vitest"
Expand Down

0 comments on commit 8013da6

Please sign in to comment.