Skip to content

Commit 0e19531

Browse files
committed
Merge branch 'master' into beta
2 parents 35a65b6 + 3f9ae88 commit 0e19531

File tree

3 files changed

+9
-18
lines changed

3 files changed

+9
-18
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
language: node_js
22

33
node_js:
4+
- 12
45
- 10
5-
- 8
6+
- 8.3
67

78
# Trigger a push build on release and greenkeeper branches + PRs build on every branches
89
# Avoid double build on PRs (See https://github.com/travis-ci/travis-ci/issues/1147)

index.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ async function publish(pluginConfig, context) {
6767
debug(stdout);
6868
debug(error);
6969

70-
context.logger.log(
70+
debug(
7171
`The command ${pluginConfig.publishCmd ||
7272
pluginConfig.cmd} wrote invalid JSON to stdout. The stdout content will be ignored.`
7373
);
@@ -91,9 +91,7 @@ async function addChannel(pluginConfig, context) {
9191
debug(stdout);
9292
debug(error);
9393

94-
context.logger.log(
95-
`The command ${pluginConfig.cmd} wrote invalid JSON to stdout. The stdout content will be ignored.`
96-
);
94+
debug(`The command ${pluginConfig.cmd} wrote invalid JSON to stdout. The stdout content will be ignored.`);
9795

9896
return undefined;
9997
}

package.json

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,33 +6,26 @@
66
"bugs": {
77
"url": "https://github.com/semantic-release/exec/issues"
88
},
9-
"config": {
10-
"commitizen": {
11-
"path": "cz-conventional-changelog"
12-
}
13-
},
149
"contributors": [
1510
"Stephan Bönnemann <[email protected]> (http://boennemann.me)",
1611
"Gregor Martynus (https://twitter.com/gr2m)"
1712
],
1813
"dependencies": {
1914
"@semantic-release/error": "^2.1.0",
20-
"aggregate-error": "^2.0.0",
15+
"aggregate-error": "^3.0.0",
2116
"debug": "^4.0.0",
2217
"execa": "^1.0.0",
2318
"lodash": "^4.17.4",
24-
"parse-json": "^4.0.0"
19+
"parse-json": "^5.0.0"
2520
},
2621
"devDependencies": {
27-
"ava": "^1.0.1",
22+
"ava": "^2.0.0",
2823
"codecov": "^3.0.0",
29-
"commitizen": "^3.0.0",
30-
"cz-conventional-changelog": "^2.0.0",
31-
"nyc": "^13.1.0",
24+
"nyc": "^14.0.0",
3225
"semantic-release": "^16.0.0-beta",
3326
"sinon": "^7.1.1",
3427
"stream-buffers": "^3.0.2",
35-
"xo": "^0.24.0"
28+
"xo": "^0.25.0"
3629
},
3730
"engines": {
3831
"node": ">=8.3"
@@ -80,7 +73,6 @@
8073
"url": "https://github.com/semantic-release/exec.git"
8174
},
8275
"scripts": {
83-
"cm": "git-cz",
8476
"codecov": "codecov -f coverage/coverage-final.json",
8577
"lint": "xo",
8678
"pretest": "npm run lint",

0 commit comments

Comments
 (0)