Skip to content

Commit

Permalink
Make sure to also run build:test in the build step (#686)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoroth committed Jun 15, 2023
1 parent 69488c7 commit 4f4b9bd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,11 @@
"scripts": {
"clean": "rm -fr dist",
"types": "tsc --noEmit false --declaration true --emitDeclarationOnly true --outDir dist/types",
"prebuild": "yarn build:test",
"build": "yarn types && rollup -c",
"build:test": "tsc -b tsconfig.test.json",
"watch": "rollup -wc",
"prerelease": "yarn build && git --no-pager diff && echo && npm pack --dry-run",
"prerelease": "yarn clean && yarn build && yarn build:test && git --no-pager diff && echo && npm pack --dry-run",
"release": "npm publish",
"start": "concurrently \"npm:watch\" \"npm:start:examples\"",
"start:examples": "cd examples && yarn install && node server.js",
Expand Down

0 comments on commit 4f4b9bd

Please sign in to comment.