Skip to content

Commit

Permalink
chore(build): fix scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
wessberg committed May 28, 2021
1 parent edc3472 commit 6e794ce
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,13 @@
"prettier": "prettier --write \"{src,test,documentation}/**/*.{js,ts,json,html,xml,css,md}\"",
"test": "ava",
"prebuild": "pnpm run clean",
"build": "pnpm run rollup",
"watch": "pnpm run rollup -- --watch",
"build": "pnpm run prebuild && pnpm run rollup",
"prewatch": "pnpm run clean",
"watch": "pnpm run prewatch && pnpm run rollup -- --watch",
"rollup": "rollup -c rollup.config.js",
"preversion": "pnpm run lint && pnpm run build",
"version": "pnpm run generate:all && git add .",
"release": "np --no-cleanup --no-yarn --no-tests",
"version": "pnpm run preversion && pnpm run generate:all && git add .",
"release": "np --no-cleanup --no-yarn",
"update:check": "pnpx npm-check-updates -x np --dep dev,prod",
"update:commit": "pnpx npm-check-updates -u -x np --dep dev,prod && pnpm update && pnpm install"
},
Expand Down

0 comments on commit 6e794ce

Please sign in to comment.