Skip to content

Commit

Permalink
Merge pull request #1448 from relative-ci/drop-node-10-support
Browse files Browse the repository at this point in the history
build: Drop node v10 support
  • Loading branch information
vio authored May 16, 2021
2 parents 7a1a1ac + b8a364b commit cc7ee29
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ defaults: &defaults
working_directory: ~/repo
executor:
name: node/default
tag: '10.23'
tag: '12.22'

jobs:
test:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"private": true,
"description": "Generate bundle report(bundle size, assets, modules, packages) and compare the results between different builds.",
"engines": {
"node": ">= 10.0"
"node": ">= 12.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "4.22.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/cli-utils/.babelrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module.exports = {
useBuiltIns: 'usage',
corejs: 3,
targets: {
node: '8',
node: 'current',
},
}],
],
Expand Down
2 changes: 1 addition & 1 deletion packages/cli-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"lib": "lib"
},
"engines": {
"node": ">= 10.0"
"node": ">= 12.0"
},
"scripts": {
"build": "babel src -d lib",
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"lib": "lib"
},
"engines": {
"node": ">= 10.0"
"node": ">= 12.0"
},
"scripts": {
"lint": "../../node_modules/.bin/eslint . --ext .js",
Expand Down
2 changes: 1 addition & 1 deletion packages/gatsby-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "In-depth bundle analyzer for webpack(bundle size, assets, modules)",
"main": "index.js",
"engines": {
"node": ">= 10.0"
"node": ">= 12.0"
},
"scripts": {
"lint": "../../node_modules/.bin/eslint . --ext .js"
Expand Down
2 changes: 1 addition & 1 deletion packages/html-templates/.babelrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ module.exports = {
modules: 'commonjs',
corejs: 3,
targets: {
node: 8,
node: 'current',
},
},
],
Expand Down
2 changes: 1 addition & 1 deletion packages/next-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "In-depth bundle analyzer for webpack(bundle size, assets, modules)",
"main": "index.js",
"engines": {
"node": ">= 10.0"
"node": ">= 12.0"
},
"scripts": {
"lint": "../../node_modules/.bin/eslint . --ext .js"
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"module": "lib-esm/index.js",
"types": "types/index.d.ts",
"engines": {
"node": ">= 10.0"
"node": ">= 12.0"
},
"directories": {
"lib": "lib"
Expand Down
2 changes: 1 addition & 1 deletion packages/webpack-plugin/.babelrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module.exports = {
useBuiltIns: 'usage',
corejs: 3,
targets: {
node: '8',
node: 'current',
},
}],
],
Expand Down
2 changes: 1 addition & 1 deletion packages/webpack-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"lib": "lib"
},
"engines": {
"node": ">= 10.0"
"node": ">= 12.0"
},
"scripts": {
"build": "babel src -d lib",
Expand Down

0 comments on commit cc7ee29

Please sign in to comment.