Skip to content

Commit 786e4a6

Browse files
chore: update
BREAKING CHANGES: * minimum supported Node.js version is `10.13` * minimum supported eslint version is `6.0.0`
1 parent 0c4fa64 commit 786e4a6

File tree

5 files changed

+6
-11
lines changed

5 files changed

+6
-11
lines changed

.editorconfig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,4 @@ insert_final_newline = true
99
trim_trailing_whitespace = true
1010

1111
[*.md]
12-
insert_final_newline = true
1312
trim_trailing_whitespace = false

.github/workflows/nodejs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ jobs:
4343
- name: Lint
4444
run: npm run lint
4545

46-
- name: Security audit
47-
run: npm run security
46+
#- name: Security audit
47+
# run: npm run security
4848

4949
- name: Check commit message
5050
uses: wagoid/commitlint-github-action@v1
@@ -55,7 +55,7 @@ jobs:
5555
strategy:
5656
matrix:
5757
os: [ubuntu-latest, windows-latest, macos-latest]
58-
node-version: [8.x, 10.x, 12.x, 14.x]
58+
node-version: [10.x, 12.x, 14.x]
5959
webpack-version: [latest, next]
6060

6161
runs-on: ${{ matrix.os }}

.prettierrc.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1 @@
1-
module.exports = {
2-
singleQuote: true,
3-
trailingComma: 'es5',
4-
arrowParens: 'always',
5-
};
1+
module.exports = { singleQuote: true };

babel.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module.exports = (api) => {
1010
'@babel/preset-env',
1111
{
1212
targets: {
13-
node: '8.9.0',
13+
node: '10.13.0',
1414
},
1515
},
1616
],

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"bugs": "https://github.com/webpack-contrib/eslint-webpack-plugin/issues",
1010
"main": "dist/cjs.js",
1111
"engines": {
12-
"node": ">= 8.9.0"
12+
"node": ">= 10.13.0"
1313
},
1414
"scripts": {
1515
"start": "npm run build -- -w",

0 commit comments

Comments
 (0)