diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 3188f85d7..d34e987f4 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - node-version: [6.x, 8.x, 10.x, 12.x, 13.x] + node-version: [8.x, 10.x, 12.x, 13.x] runs-on: ubuntu-latest steps: diff --git a/.travis.yml b/.travis.yml index e2475e565..005fbd329 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,6 @@ node_js: - 12 - 10 - 8 -- 6 - node before_install: - curl -o- -L https://yarnpkg.com/install.sh | bash diff --git a/babel.config.js b/babel.config.js index d167ade1f..5321fada3 100644 --- a/babel.config.js +++ b/babel.config.js @@ -5,6 +5,6 @@ module.exports = { plugins: ['replace-ts-export-assignment'], presets: [ '@babel/preset-typescript', - ['@babel/preset-env', { targets: { node: 6 } }], + ['@babel/preset-env', { targets: { node: 8 } }], ], }; diff --git a/package.json b/package.json index 2ec5ae599..797040ded 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,7 @@ ], "main": "lib/", "engines": { - "node": ">=6" + "node": ">=8" }, "peerDependencies": { "eslint": ">=5"