Skip to content

Commit

Permalink
pkg/circleci: remove instanbul from dev dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
chjj committed Nov 29, 2018
1 parent 1436c97 commit df1e8c0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
10 changes: 4 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ version: 2.0
jobs:
install:
<<: *defaults
docker:
- image: circleci/node:10.2
working_directory: ~/repo
steps:
- checkout
- restore_cache:
Expand All @@ -15,6 +18,7 @@ jobs:
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: npm install
- run: npm install eslint istanbul@1.1.0-alpha.1 codecov
- save_cache:
paths:
- node_modules
Expand All @@ -31,9 +35,6 @@ jobs:
- run:
name: Tests with coverage
command: npm run test-ci
- run:
name: Install codecov
command: npm i codecov
- run:
name: Submit coverage
command: ./node_modules/.bin/codecov
Expand All @@ -43,9 +44,6 @@ jobs:
steps:
- attach_workspace:
at: .
- run:
name: Install eslint
command: npm i eslint
- run:
name: Lint
command: npm run lint-ci
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,7 @@
"n64": "~0.2.4"
},
"devDependencies": {
"bmocha": "^0.1.0",
"istanbul": "^1.1.0-alpha.1"
"bmocha": "^0.1.0"
},
"main": "./lib/bcoin.js",
"bin": {
Expand Down

0 comments on commit df1e8c0

Please sign in to comment.