diff --git a/.travis.yml b/.travis.yml index ff81db9..aae3cf7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,8 +2,7 @@ language: node_js node_js: - 12 - - 10 - - 8 + - 10.13 os: - linux diff --git a/package.json b/package.json index b83cdab..a5f884d 100644 --- a/package.json +++ b/package.json @@ -43,7 +43,7 @@ "xo": "^0.25.3" }, "engines": { - "node": ">=8.16" + "node": ">=10.13" }, "files": [ "index.js", diff --git a/test/sourcemap.test.js b/test/sourcemap.test.js index da43af4..fd2fb58 100644 --- a/test/sourcemap.test.js +++ b/test/sourcemap.test.js @@ -8,6 +8,8 @@ import cli from './helpers/cli'; import read from './helpers/read'; import eol from './helpers/eol'; +/* eslint prefer-named-capture-group: "off" */ + test('--map generate an external map (css)', async t => { const output = tempy.file({extension: 'css'}); const {error, stderr} = await cli(['test/fixtures/a.css', 'test/fixtures/b.css', '-m', '-o', output]);