Skip to content
This repository has been archived by the owner on Jan 5, 2019. It is now read-only.

Commit

Permalink
chore: use yarn as task runner only
Browse files Browse the repository at this point in the history
Completed switch from npm to yarn. Closes #82.
  • Loading branch information
eps1lon committed Aug 14, 2018
1 parent 1fc8985 commit 4bf47d3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
language: node_js
script:
- npm run format:check
- npm run lint
- npm run test:ci
- npm run test:typings
- npm run coveralls
- npm run build
- yarn run format:check
- yarn run lint
- yarn run test:ci
- yarn run test:typings
- yarn run coveralls
- yarn run build
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"src/"
],
"scripts": {
"build": "npm run build:browser && npm run build:commonjs && npm run build:es",
"build": "yarn run build:browser && yarn run build:commonjs && yarn run build:es",
"build:browser": "webpack --config ./config/webpack.umd.js",
"build:clean": "rimraf dist",
"build:commonjs": "tsc --project tsconfig.build.json --module CommonJS --outDir dist/cjs",
Expand All @@ -28,7 +28,7 @@
"format:check": "prettier --list-different \"src/**/*.ts\"",
"format:data": "prettier --write \"data/**/*.json\"",
"lint": "tslint --project tsconfig.json \"src/**/*.ts\"",
"prepublishOnly": "npm run build",
"prepublishOnly": "yarn run build",
"test": "jest --watch",
"test:check": "jest --ci",
"test:ci": "jest --ci --coverage --runInBand",
Expand Down

0 comments on commit 4bf47d3

Please sign in to comment.