Skip to content

Commit

Permalink
chore: use yarn run
Browse files Browse the repository at this point in the history
Thanks to @DanielRuf comment
  • Loading branch information
pooya parsa committed Jan 31, 2019
1 parent dd16562 commit bb2f453
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,23 @@
"node": ">= 6.9.0"
},
"scripts": {
"start": "yarn build -- -w",
"start": "yarn run build -- -w",
"build": "cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files",
"clean": "del-cli dist",
"lint": "eslint --cache src test",
"ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
"lint-staged": "lint-staged",
"prebuild": "yarn clean",
"prepublish": "yarn build",
"prebuild": "yarn run clean",
"prepublish": "yarn run build",
"release": "standard-version",
"release:ci": "conventional-github-releaser -p angular",
"release:validate": "commitlint --from=$(git describe --tags --abbrev=0) --to=$(git rev-parse HEAD)",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage",
"ci:lint": "yarn lint && yarn audit",
"ci:test": "yarn test --runInBand",
"ci:coverage": "yarn test:coverage -- --runInBand",
"ci:lint": "yarn run lint && yarn audit",
"ci:test": "yarn run test --runInBand",
"ci:coverage": "yarn run test:coverage -- --runInBand",
"defaults": "webpack-defaults",
"demo": "webpack-cli --config demo/webpack.config.js"
},
Expand Down

0 comments on commit bb2f453

Please sign in to comment.