Skip to content

Commit

Permalink
chore: require Node.js >=10.18
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Require Node.js >= 10.18
  • Loading branch information
pvdlg committed Jan 28, 2020
1 parent b828557 commit 2a07824
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ language: node_js
node_js:
- 12
- 10
- 8

os:
- linux
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"xo": "^0.25.3"
},
"engines": {
"node": ">=8.16"
"node": ">=10.18"
},
"files": [
"index.js"
Expand Down
2 changes: 2 additions & 0 deletions test/unit.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ const atImport = require('postcss-import');
const {waitFor, compile} = require('./helpers/utils');
const {mockPreprocessor} = require('./helpers/mock');

/* eslint prefer-named-capture-group: "off" */

test('Compile css file', async t => {
const fixture = 'test/fixtures/basic.css';
const options = {plugins: [atImport, mixins, simpleVars, cssnano]};
Expand Down

0 comments on commit 2a07824

Please sign in to comment.