Skip to content

Commit 2a07824

Browse files
committed
chore: require Node.js >=10.18
BREAKING CHANGE: Require Node.js >= 10.18
1 parent b828557 commit 2a07824

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ language: node_js
33
node_js:
44
- 12
55
- 10
6-
- 8
76

87
os:
98
- linux

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"xo": "^0.25.3"
4949
},
5050
"engines": {
51-
"node": ">=8.16"
51+
"node": ">=10.18"
5252
},
5353
"files": [
5454
"index.js"

test/unit.test.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ const atImport = require('postcss-import');
1010
const {waitFor, compile} = require('./helpers/utils');
1111
const {mockPreprocessor} = require('./helpers/mock');
1212

13+
/* eslint prefer-named-capture-group: "off" */
14+
1315
test('Compile css file', async t => {
1416
const fixture = 'test/fixtures/basic.css';
1517
const options = {plugins: [atImport, mixins, simpleVars, cssnano]};

0 commit comments

Comments
 (0)