Skip to content

Commit 2be57e4

Browse files
chore(release): 5.0.0 (#36)
1 parent b42cad4 commit 2be57e4

File tree

5 files changed

+460
-200
lines changed

5 files changed

+460
-200
lines changed

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@ cache:
1818
matrix:
1919
fast_finish: true
2020
include:
21-
- node_js: "12"
21+
- node_js: "13"
2222
script: npm run $JOB_PART
2323
env: JOB_PART=pretest
24-
- node_js: "12"
24+
- node_js: "13"
2525
script: npm run $JOB_PART
2626
env: JOB_PART=test:only
27-
- node_js: "10"
27+
- node_js: "12"
2828
script: npm run $JOB_PART
2929
env: JOB_PART=test:only
30-
- node_js: "8"
30+
- node_js: "10"
3131
script: npm run $JOB_PART
3232
env: JOB_PART=test:only
3333

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44

55
This project adheres to [Semantic Versioning](http://semver.org).
66

7+
## 5.0.0 - 2019-10-24
8+
9+
- Changed: minimum require `execa` version is `3.2.0`.
10+
- Changed: minimum require node version is >= 10.13.0.
11+
712
## 4.0.1 - 2019-10-08
813

914
- Fixed: less unnecessary logging.

__tests__/__snapshots__/index.test.js.snap

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Array [
8282
"ExecaPlugin",
8383
"error",
8484
Array [
85-
[Error: Command "not-found" return "Command failed with exit code 2 (ENOENT): not-found"],
85+
[Error: Command "not-found" return "Command failed with ENOENT: not-found"],
8686
],
8787
],
8888
Array [
@@ -119,7 +119,7 @@ Array [
119119
"ExecaPlugin",
120120
"error",
121121
Array [
122-
[Error: Command "not-found" return "Command failed with exit code 2 (ENOENT): not-found"],
122+
[Error: Command "not-found" return "Command failed with ENOENT: not-found"],
123123
],
124124
],
125125
Array [
@@ -172,7 +172,7 @@ exports[`execa-webpack-plugin should throw error on 'on*' options are empty (no
172172

173173
exports[`execa-webpack-plugin should throw error on 'on*' options are empty (no events): logs 1`] = `Array []`;
174174

175-
exports[`execa-webpack-plugin should throw error with 'bail: true' option (async hook) 1`] = `[Error: Command failed with exit code 2 (ENOENT): not-found]`;
175+
exports[`execa-webpack-plugin should throw error with 'bail: true' option (async hook) 1`] = `[Error: Command failed with ENOENT: not-found]`;
176176

177177
exports[`execa-webpack-plugin should throw error with 'bail: true' option (async hook): logs 1`] = `
178178
Array [
@@ -194,7 +194,7 @@ Array [
194194
"ExecaPlugin",
195195
"error",
196196
Array [
197-
[Error: Command "not-found" return "Command failed with exit code 2 (ENOENT): not-found"],
197+
[Error: Command "not-found" return "Command failed with ENOENT: not-found"],
198198
],
199199
],
200200
Array [
@@ -207,7 +207,7 @@ Array [
207207
]
208208
`;
209209

210-
exports[`execa-webpack-plugin should throw error with 'bail: true' option (sync hook) 1`] = `[Error: Command failed with exit code 2 (ENOENT): not-found]`;
210+
exports[`execa-webpack-plugin should throw error with 'bail: true' option (sync hook) 1`] = `[Error: Command failed with ENOENT: not-found]`;
211211

212212
exports[`execa-webpack-plugin should throw error with 'bail: true' option (sync hook): logs 1`] = `
213213
Array [
@@ -229,7 +229,7 @@ Array [
229229
"ExecaPlugin",
230230
"error",
231231
Array [
232-
[Error: Command "not-found" return "Command failed with exit code 2 (ENOENT): not-found"],
232+
[Error: Command "not-found" return "Command failed with ENOENT: not-found"],
233233
],
234234
],
235235
Array [
@@ -359,7 +359,7 @@ Array [
359359
"ExecaPlugin",
360360
"error",
361361
Array [
362-
[Error: Command "del " return "Command failed with exit code 1 (EPERM): del "],
362+
[Error: Command "del " return "Command failed with exit code 1: del "],
363363
],
364364
],
365365
Array [
@@ -403,7 +403,7 @@ Array [
403403
"ExecaPlugin",
404404
"error",
405405
Array [
406-
[Error: Command "del " return "Command failed with exit code 1 (EPERM): del "],
406+
[Error: Command "del " return "Command failed with exit code 1: del "],
407407
],
408408
],
409409
Array [

0 commit comments

Comments
 (0)