Skip to content

Commit

Permalink
added lint to start, build, test, test:watch
Browse files Browse the repository at this point in the history
  • Loading branch information
rav1kantsingh committed Feb 26, 2020
1 parent 1e132cd commit ee82521
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 @@ -29,11 +29,11 @@
},
"homepage": "https://github.com/OpenMined/syft.js#readme",
"scripts": {
"start": "rollup -cw",
"build": "rollup -c",
"start": "npm run lint && rollup -cw",
"build": "npm run lint && rollup -c",
"prepare": "npm run build",
"test": "jest --coverage",
"test:watch": "jest --watch",
"test": "npm run lint && jest --coverage",
"test:watch": "npm run lint && jest --watch",
"version": "auto-changelog -p && git add CHANGELOG.md",
"release": "np",
"deploy": "./copy-examples.sh && gh-pages -d tmp && rm -rf tmp",
Expand Down

0 comments on commit ee82521

Please sign in to comment.