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

Commit

Permalink
fix(package): Use different, more up to date dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Kent C. Dodds committed Nov 11, 2015
1 parent 3c21e49 commit 452ea5a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,12 @@
"babel": "5.8.23",
"chai": "3.3.0",
"codecov.io": "0.1.6",
"commitizen": "1.0.5",
"cross-spawn": "2.0.0",
"cz-conventional-changelog": "1.1.2",
"commitizen": "2.4.4",
"cz-conventional-changelog": "1.1.4",
"eslint": "1.5.1",
"eslint-config-kentcdodds": "4.0.1",
"eslint-plugin-mocha": "1.0.0",
"ghooks": "0.3.2",
"ghooks": "1.0.0",
"istanbul": "0.3.21",
"mocha": "2.3.3",
"proxyquire": "1.7.2",
Expand All @@ -56,14 +55,15 @@
"validate-commit-msg": "1.0.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog/"
},
"ghooks": {
"commit-msg": "./node_modules/.bin/validate-commit-msg && npm run eslint && npm t && npm run check-coverage && echo 'pre-commit checks good 👍'"
"commit-msg": "validate-commit-msg && npm run eslint && npm t && npm run check-coverage && echo 'pre-commit checks good 👍'"
}
},
"czConfig": {
"path": "node_modules/cz-conventional-changelog/"
},
"dependencies": {
"add-to-path": "1.1.2"
"cross-spawn": "2.0.0",
"manage-path": "2.0.0"
}
}
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {spawn} from 'cross-spawn';
import getPathVar from 'add-to-path/dist/get-path-var';
import getPathVar from 'manage-path/dist/get-path-var';
export default crossEnv;

const envSetterRegex = /(\w+)=(\w+)/;
Expand Down
2 changes: 1 addition & 1 deletion src/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import chai from 'chai';
import sinonChai from 'sinon-chai';
import sinon from 'sinon';
import proxyquire from 'proxyquire';
import getPathVar from 'add-to-path/dist/get-path-var';
import getPathVar from 'manage-path/dist/get-path-var';
chai.use(sinonChai);

const {expect} = chai;
Expand Down

0 comments on commit 452ea5a

Please sign in to comment.