Skip to content

Commit

Permalink
Update get-it-onto-npm script to rm -f instead
Browse files Browse the repository at this point in the history
  • Loading branch information
MasterKale committed Jan 5, 2023
1 parent 043c58e commit 981193d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"bootstrap": "lerna bootstrap",
"bootstrap:ci": "lerna bootstrap --hoist",
"clean": "lerna clean -y && rm -f ./packages/**/package-lock.json && rm -rf ./packages/**/dist",
"get-it-onto-npm": "lerna bootstrap && rm ./packages/**/package-lock.json && lerna publish",
"get-it-onto-npm": "lerna bootstrap && rm -f ./packages/**/package-lock.json && lerna publish",
"lint": "prettier --write packages/**/src/**/*.ts example/**/*.ts && eslint --fix packages/**/src/**/*.ts example/**/*.ts",
"docs": "npm run bootstrap:ci && typedoc --tsconfig tsconfigdoc.json",
"test": "lerna run test",
Expand Down

0 comments on commit 981193d

Please sign in to comment.