Skip to content

Commit

Permalink
Moved scripts command to yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
AleshaOleg committed Nov 1, 2018
1 parent 21544fa commit bc0ed79
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@
"postcss-parser-tests": "^6.2.1"
},
"scripts": {
"precommit": "npm run test && lint-staged",
"prepack": "npm run build",
"precommit": "yarn run test && lint-staged",
"prepack": "yarn run build",
"clean": "rm *.js || echo 'Already cleaned'",
"build": "npm run clean && babel -s inline -d ./ *.es6",
"build": "yarn run clean && babel -s inline -d ./ *.es6 && yarn run test",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"prepublishOnly": "npm run build",
"prepublishOnly": "yarn run build",
"pretest": "eslint *.es6 __tests__",
"test": "jest"
},
Expand Down

0 comments on commit bc0ed79

Please sign in to comment.