Skip to content

Commit 74e0342

Browse files
Fix CircleCI: Added 'npm install' to release job
Removed rimraf from scripts
1 parent bdecaa1 commit 74e0342

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.circleci/config.yml

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ jobs:
2828
- attach_workspace:
2929
at: .
3030
- run: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc
31+
- run: npm install
3132
- run: npm publish
3233
# dont change anything
3334
workflows:

package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@
3030
"jest": "jest --no-cache --maxWorkers=4 --config config/jest/default.js",
3131
"lint": "npm run lint:js",
3232
"lint:js": "./node_modules/.bin/eslint --ext .js,.jsx .",
33-
"test": "npm run lint && npm run jest",
34-
"rimraf": "./node_modules/rimraf/bin.js"
33+
"test": "npm run lint && npm run jest"
3534
},
3635
"version": "0.16.0",
3736
"dependencies": {

0 commit comments

Comments
 (0)