Skip to content

Commit

Permalink
Merge pull request #1539 from srod/feat/remove-node-12
Browse files Browse the repository at this point in the history
feat(node): remove node 12, add node 18
  • Loading branch information
srod committed Aug 4, 2022
2 parents 63682b7 + 38db93c commit 4971940
Show file tree
Hide file tree
Showing 22 changed files with 28 additions and 33 deletions.
17 changes: 6 additions & 11 deletions .github/dependabot.yml
@@ -1,13 +1,8 @@
version: 2
updates:
- package-ecosystem: npm
directory: "/"
schedule:
interval: monthly
time: "04:00"
open-pull-requests-limit: 10
ignore:
- dependency-name: google-closure-compiler
versions:
- 20210202.0.0
- 20210302.0.0
- package-ecosystem: npm
directory: '/'
schedule:
interval: monthly
time: '04:00'
open-pull-requests-limit: 10
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node-version: [12.x, 14.x, 16.x]
node-version: [14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
Expand Down
4 changes: 2 additions & 2 deletions .mergify.yml
Expand Up @@ -2,12 +2,12 @@ pull_request_rules:
- name: automatic merge for Dependabot pull requests
conditions:
- author=dependabot-preview[bot]
- status-success=test (ubuntu-latest, 12.x)
- status-success=test (ubuntu-latest, 14.x)
- status-success=test (ubuntu-latest, 16.x)
- status-success=test (windows-latest, 12.x)
- status-success=test (ubuntu-latest, 18.x)
- status-success=test (windows-latest, 14.x)
- status-success=test (windows-latest, 16.x)
- status-success=test (windows-latest, 18.x)
actions:
merge:
method: merge
2 changes: 1 addition & 1 deletion babel.config.js
Expand Up @@ -7,7 +7,7 @@ module.exports = api => {
'@babel/preset-env',
{
targets: {
node: '12'
node: '14'
}
}
]
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-minify/package.json
Expand Up @@ -13,7 +13,7 @@
"license": "MIT",
"main": "lib/babel-minify.js",
"engines": {
"node": ">=12.0.0"
"node": ">=14.0.0"
},
"directories": {
"lib": "lib",
Expand Down
2 changes: 1 addition & 1 deletion packages/clean-css/package.json
Expand Up @@ -13,7 +13,7 @@
"license": "MIT",
"main": "lib/clean-css.js",
"engines": {
"node": ">=12.0.0"
"node": ">=14.0.0"
},
"directories": {
"lib": "lib",
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Expand Up @@ -15,7 +15,7 @@
},
"main": "lib/cli.js",
"engines": {
"node": ">=12.0.0"
"node": ">=14.0.0"
},
"directories": {
"lib": "lib",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Expand Up @@ -12,7 +12,7 @@
"license": "MIT",
"main": "lib/core.js",
"engines": {
"node": ">=12.0.0"
"node": ">=14.0.0"
},
"directories": {
"lib": "lib",
Expand Down
2 changes: 1 addition & 1 deletion packages/crass/package.json
Expand Up @@ -13,7 +13,7 @@
"license": "MIT",
"main": "lib/crass.js",
"engines": {
"node": ">=12.0.0"
"node": ">=14.0.0"
},
"directories": {
"lib": "lib",
Expand Down
2 changes: 1 addition & 1 deletion packages/cssnano/package.json
Expand Up @@ -13,7 +13,7 @@
"license": "MIT",
"main": "lib/cssnano.js",
"engines": {
"node": ">=12.0.0"
"node": ">=14.0.0"
},
"directories": {
"lib": "lib",
Expand Down
2 changes: 1 addition & 1 deletion packages/csso/package.json
Expand Up @@ -13,7 +13,7 @@
"license": "MIT",
"main": "lib/csso.js",
"engines": {
"node": ">=12.0.0"
"node": ">=14.0.0"
},
"directories": {
"lib": "lib",
Expand Down
2 changes: 1 addition & 1 deletion packages/google-closure-compiler/package.json
Expand Up @@ -14,7 +14,7 @@
"license": "MIT",
"main": "lib/google-closure-compiler.js",
"engines": {
"node": ">=12.0.0"
"node": ">=14.0.0"
},
"directories": {
"lib": "lib",
Expand Down
2 changes: 1 addition & 1 deletion packages/html-minifier/package.json
Expand Up @@ -13,7 +13,7 @@
"license": "MIT",
"main": "lib/html-minifier.js",
"engines": {
"node": ">=12.0.0"
"node": ">=14.0.0"
},
"directories": {
"lib": "lib",
Expand Down
2 changes: 1 addition & 1 deletion packages/jsonminify/package.json
Expand Up @@ -14,7 +14,7 @@
"license": "MIT",
"main": "lib/jsonminify.js",
"engines": {
"node": ">=12.0.0"
"node": ">=14.0.0"
},
"directories": {
"lib": "lib",
Expand Down
2 changes: 1 addition & 1 deletion packages/no-compress/package.json
Expand Up @@ -10,7 +10,7 @@
"license": "MIT",
"main": "lib/no-compress.js",
"engines": {
"node": ">=12.0.0"
"node": ">=14.0.0"
},
"directories": {
"lib": "lib",
Expand Down
2 changes: 1 addition & 1 deletion packages/run/package.json
Expand Up @@ -12,7 +12,7 @@
"license": "MIT",
"main": "lib/run.js",
"engines": {
"node": ">=12.0.0"
"node": ">=14.0.0"
},
"directories": {
"lib": "lib",
Expand Down
2 changes: 1 addition & 1 deletion packages/sqwish/package.json
Expand Up @@ -13,7 +13,7 @@
"license": "MIT",
"main": "lib/sqwish.js",
"engines": {
"node": ">=12.0.0"
"node": ">=14.0.0"
},
"directories": {
"lib": "lib",
Expand Down
2 changes: 1 addition & 1 deletion packages/terser/package.json
Expand Up @@ -13,7 +13,7 @@
"license": "MIT",
"main": "lib/terser.js",
"engines": {
"node": ">=12.0.0"
"node": ">=14.0.0"
},
"directories": {
"lib": "lib",
Expand Down
2 changes: 1 addition & 1 deletion packages/uglify-es/package.json
Expand Up @@ -13,7 +13,7 @@
"license": "MIT",
"main": "lib/uglify-es.js",
"engines": {
"node": ">=12.0.0"
"node": ">=14.0.0"
},
"directories": {
"lib": "lib",
Expand Down
2 changes: 1 addition & 1 deletion packages/uglify-js/package.json
Expand Up @@ -13,7 +13,7 @@
"license": "MIT",
"main": "lib/uglify-js.js",
"engines": {
"node": ">=12.0.0"
"node": ">=14.0.0"
},
"directories": {
"lib": "lib",
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Expand Up @@ -12,7 +12,7 @@
"license": "MIT",
"main": "lib/utils.js",
"engines": {
"node": ">=12.0.0"
"node": ">=14.0.0"
},
"directories": {
"lib": "lib",
Expand Down
2 changes: 1 addition & 1 deletion packages/yui/package.json
Expand Up @@ -13,7 +13,7 @@
"license": "MIT",
"main": "lib/yui.js",
"engines": {
"node": ">=12.0.0"
"node": ">=14.0.0"
},
"directories": {
"lib": "lib",
Expand Down

0 comments on commit 4971940

Please sign in to comment.