Skip to content

Commit

Permalink
Merge pull request #335 from dcyriller/yarn
Browse files Browse the repository at this point in the history
Use yarn in scripts
  • Loading branch information
Turbo87 authored Jun 16, 2020
2 parents e65ad1b + a80eceb commit f46916d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ node_js:
- '12'

script:
- npm run test-ci
- yarn test-ci
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@
"url": "git+https://github.com/lerna/lerna-changelog.git"
},
"scripts": {
"build": "npm run clean && tsc",
"build": "yarn clean && tsc",
"changelog": "node ./bin/cli.js",
"clean": "rimraf lib",
"fix": "npm run lint -- --fix",
"fix": "yarn lint -- --fix",
"lint": "eslint src --ext ts --format stylish",
"prepublish": "npm run build",
"prepublish": "yarn build",
"prettier": "prettier --write 'src/**/*.ts'",
"test": "jest",
"test-ci": "npm run build && jest",
"watch": "npm run build -- --watch"
"test-ci": "yarn build && yarn test",
"watch": "yarn build -- --watch"
},
"dependencies": {
"chalk": "^2.4.1",
Expand Down

0 comments on commit f46916d

Please sign in to comment.