Skip to content

Commit

Permalink
ensure we npm install before publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinMalfait committed Jun 17, 2021
1 parent 6a4d1a2 commit dd02ae1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -22,7 +22,7 @@
"babelify": "babel src --out-dir lib --copy-files",
"postbabelify": "ncc build lib/cli-peer-dependencies.js -o peers",
"rebuild-fixtures": "npm run babelify && babel-node scripts/rebuildFixtures.js",
"prepublishOnly": "npm run babelify && babel-node scripts/build.js && node scripts/build-plugins.js",
"prepublishOnly": "npm install --force && npm run babelify && babel-node scripts/build.js && node scripts/build-plugins.js",
"style": "eslint .",
"test": "cross-env TAILWIND_MODE=build jest",
"test:integrations": "npm run test --prefix ./integrations",
Expand Down

0 comments on commit dd02ae1

Please sign in to comment.