Skip to content

Commit 80560d8

Browse files
authored
Update deps. (#313)
1 parent b468e82 commit 80560d8

File tree

2 files changed

+26
-25
lines changed

2 files changed

+26
-25
lines changed

lib/ci-reporter.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ function reduceErrors (files) {
123123
if (ci.isCI && (ci.APPVEYOR || ci.CIRCLE || ci.JENKINS)) {
124124
appveyorApiUrl = process.env.APPVEYOR_API_URL;
125125
if (appveyorApiUrl) {
126+
// eslint-disable-next-line node/no-deprecated-api
126127
appveyorApiUrl = url.resolve(appveyorApiUrl, 'api/build/compilationmessages');
127128
}
128129
module.exports = function (files) {
@@ -149,7 +150,7 @@ if (ci.isCI && (ci.APPVEYOR || ci.CIRCLE || ci.JENKINS)) {
149150

150151
function resolveHomePath (strPath) {
151152
return strPath.replace(
152-
/^~(?=\/)/,
153+
/^~(?=\/|$)/,
153154
os.homedir
154155
);
155156
}

package.json

+24-24
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@
1414
"ci-info": "^2.0.0",
1515
"cli-truncate": "^1.1.0",
1616
"emphasize": "^2.0.0",
17-
"fancy-log": "^1.3.2",
18-
"fs-extra": "^7.0.0",
17+
"fancy-log": "^1.3.3",
18+
"fs-extra": "^7.0.1",
1919
"in-gfw": "^1.2.0",
2020
"is-windows": "^1.0.2",
2121
"js-yaml": "^3.12.0",
2222
"junit-report-builder": "^1.3.1",
2323
"lodash.get": "^4.4.2",
24-
"os-locale": "^3.0.0",
24+
"os-locale": "^3.0.1",
2525
"plugin-error": "^1.0.1",
2626
"string-width": "^3.0.0",
2727
"term-size": "^1.2.0",
@@ -31,41 +31,41 @@
3131
"devDependencies": {
3232
"codecov": "^3.1.0",
3333
"csslint": "^1.0.5",
34-
"eclint": "^2.7.0",
35-
"eslint": "^5.1.0",
34+
"eclint": "^2.8.1",
35+
"eslint": "^5.11.0",
3636
"eslint-config-standard": "^12.0.0",
37-
"eslint-plugin-compat": "^2.5.0",
38-
"eslint-plugin-import": "^2.13.0",
39-
"eslint-plugin-node": "^7.0.1",
40-
"eslint-plugin-promise": "^4.0.0",
37+
"eslint-plugin-compat": "^2.6.3",
38+
"eslint-plugin-import": "^2.14.0",
39+
"eslint-plugin-node": "^8.0.0",
40+
"eslint-plugin-promise": "^4.0.1",
4141
"eslint-plugin-standard": "^4.0.0",
42-
"exec-extra": "^2.4.0",
42+
"exec-extra": "^2.7.0",
4343
"goo.gl": "^0.1.4",
4444
"greenkeeper-lockfile": "^1.15.1",
4545
"gulp-csslint": "^1.0.1",
4646
"gulp-eslint": "^5.0.0",
47-
"gulp-html-postcss": "^7.1.3",
48-
"gulp-htmlhint": "^2.1.1",
47+
"gulp-html-postcss": "^7.1.4",
48+
"gulp-htmlhint": "^2.2.1",
4949
"gulp-jscs": "^4.1.0",
5050
"gulp-jshint": "^2.1.0",
51-
"gulp-jsonlint": "^1.2.1",
52-
"gulp-standard": "^11.0.0",
51+
"gulp-jsonlint": "^1.2.2",
52+
"gulp-standard": "^12.0.0",
5353
"gulp-stylint": "^4.0.2",
5454
"gulp-tslint": "^8.1.3",
55-
"gulp-xo": "^0.17.1",
55+
"gulp-xo": "^0.20.0",
5656
"jsdom": "^13.1.0",
57-
"jshint": "^2.9.5",
57+
"jshint": "^2.9.7",
5858
"json-stable-stringify": "^1.0.1",
5959
"mocha": "^5.2.0",
60-
"npm-run-all": "^4.1.3",
61-
"nyc": "^12.0.2",
62-
"proxyquire": "^2.0.1",
63-
"sinon": "^6.1.3",
60+
"npm-run-all": "^4.1.5",
61+
"nyc": "^13.1.0",
62+
"proxyquire": "^2.1.0",
63+
"sinon": "^7.2.2",
6464
"strip-ansi": "^5.0.0",
65-
"stylelint": "^9.3.0",
65+
"stylelint": "^9.9.0",
6666
"stylelint-config-standard": "^18.2.0",
67-
"tslint": "^5.10.0",
68-
"typescript": "^2.9.2",
67+
"tslint": "^5.12.0",
68+
"typescript": "^3.2.2",
6969
"vinyl": "^2.2.0",
7070
"vinyl-fs": "^3.0.3"
7171
},
@@ -124,5 +124,5 @@
124124
"test-cov": "nyc npm-run-all --parallel test:*",
125125
"test": "env npm-run-all --parallel lint:* test-cov"
126126
},
127-
"version": "2.9.0"
127+
"version": "2.10.0"
128128
}

0 commit comments

Comments
 (0)