Skip to content
This repository was archived by the owner on Apr 30, 2018. It is now read-only.

Commit 8714d71

Browse files
author
Kent C. Dodds
committed
chore(devDependencies): Upgrade devDependencies
Because we don't wanna fall behind. Unfortunately, kcd-common-tools doesn't currently allow us to specify a config for our eslint loader... That module needs to be though through some more. Anyway, I think we're good doing this.
1 parent d1a61c1 commit 8714d71

File tree

5 files changed

+35
-43
lines changed

5 files changed

+35
-43
lines changed

.eslintrc

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
11
{
2-
// this exists solely for editors. The test and src eslints are slightly different
3-
// and the app validates the app code via the other/app.eslintrc and validates the
4-
// test code via the other/test.eslintrc
5-
// we simply use the test.eslintrc so our editors don't get mad at us.
6-
"extends": "./other/test.eslintrc"
2+
"extends": "kentcdodds/test-angular",
3+
"rules": {
4+
"no-invalid-this": 0, // meh...
5+
"func-names": 0, // I wish, but doing this right now would be a royal pain
6+
"new-cap": [
7+
2,
8+
{
9+
"newIsCap": true,
10+
"capIsNew": true
11+
}
12+
],
13+
"max-params": [2, 10],
14+
"max-statements": [2, 30], // TODO bring this down
15+
},
16+
"globals": {
17+
"VERSION": false
18+
},
719
}

other/common.eslintrc

Lines changed: 0 additions & 17 deletions
This file was deleted.

other/src.eslintrc

Lines changed: 0 additions & 3 deletions
This file was deleted.

other/test.eslintrc

Lines changed: 0 additions & 3 deletions
This file was deleted.

package.json

Lines changed: 18 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -82,48 +82,48 @@
8282
"api-check": "^7.0.0"
8383
},
8484
"devDependencies": {
85-
"angular": "1.4.3",
86-
"angular-mocks": "1.4.3",
85+
"angular": "1.4.5",
86+
"angular-mocks": "1.4.5",
8787
"api-check": "^7.3.0",
8888
"babel": "5.8.23",
8989
"babel-loader": "5.3.2",
9090
"better-npm-run": "benoror/better-npm-run#0.0.1",
9191
"chai": "3.2.0",
92-
"codecov.io": "0.1.5",
92+
"codecov.io": "0.1.6",
9393
"commitizen": "1.0.4",
9494
"cracks": "3.0.2",
9595
"cz-conventional-changelog": "1.1.0",
9696
"eslint": "1.3.1",
97-
"eslint-config-kentcdodds": "3.0.0",
97+
"eslint-config-kentcdodds": "4.0.0",
9898
"eslint-loader": "1.0.0",
9999
"eslint-plugin-mocha": "0.5.1",
100100
"ghooks": "0.3.2",
101101
"http-server": "0.8.0",
102-
"isparta": "3.0.3",
102+
"isparta": "3.0.4",
103103
"isparta-loader": "0.2.0",
104-
"istanbul": "0.3.17",
105-
"karma": "0.12.37",
104+
"istanbul": "0.3.19",
105+
"karma": "0.13.9",
106106
"karma-chai": "0.1.0",
107107
"karma-chrome-launcher": "0.2.0",
108-
"karma-coverage": "0.4.2",
108+
"karma-coverage": "0.5.1",
109109
"karma-firefox-launcher": "0.1.6",
110110
"karma-mocha": "0.2.0",
111111
"karma-sinon": "1.0.4",
112112
"karma-sinon-chai": "1.0.0",
113-
"karma-webpack": "1.6.0",
113+
"karma-webpack": "1.7.0",
114114
"kcd-common-tools": "1.0.0-beta.23",
115-
"lodash": "3.10.0",
116-
"mocha": "2.2.5",
115+
"lodash": "3.10.1",
116+
"mocha": "2.3.2",
117117
"ng-annotate": "1.0.2",
118-
"ng-annotate-loader": "0.0.6",
118+
"ng-annotate-loader": "0.0.10",
119119
"node-libs-browser": "0.5.2",
120120
"raw-loader": "0.5.1",
121121
"semantic-release": "^4.3.4",
122-
"sinon": "1.15.4",
122+
"sinon": "1.16.1",
123123
"sinon-chai": "2.8.0",
124124
"uglify-loader": "1.2.0",
125125
"validate-commit-msg": "1.0.0",
126-
"webpack": "1.10.2",
126+
"webpack": "1.12.1",
127127
"with-package": "0.2.0"
128128
},
129129
"jspm": {
@@ -141,7 +141,10 @@
141141
"release": {
142142
"verfiyRelease": {
143143
"path": "cracks",
144-
"paths": ["src", "package.json"]
144+
"paths": [
145+
"src",
146+
"package.json"
147+
],
145148
"silent": false
146149
}
147150
}

0 commit comments

Comments
 (0)