Skip to content

Commit

Permalink
fix: make publish bot run full build, not just tsc (#6848)
Browse files Browse the repository at this point in the history
`npm run tsc` is not enough to do a full build now we also include the
`types.d.ts` file, so we need to run `build.`
  • Loading branch information
jackfranklin committed Feb 9, 2021
1 parent 25abae6 commit f718b14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -18,7 +18,7 @@
"funit": "PUPPETEER_PRODUCT=firefox npm run unit",
"test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser",
"prepare": "node typescript-if-required.js",
"prepublishOnly": "npm run tsc",
"prepublishOnly": "npm run build",
"dev-install": "npm run tsc && node install.js",
"install": "node install.js",
"eslint": "([ \"$CI\" = true ] && eslint --ext js --ext ts --quiet -f codeframe . || eslint --ext js --ext ts .)",
Expand Down

0 comments on commit f718b14

Please sign in to comment.