Skip to content

Commit

Permalink
build: Drop node v10 support
Browse files Browse the repository at this point in the history
BREAKING
  • Loading branch information
vio committed May 16, 2021
1 parent 7a1a1ac commit 26ab760
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 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/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/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/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 26ab760

Please sign in to comment.