Skip to content

Commit 3f0c57f

Browse files
kazuponota-meshi
andauthored
breaking: drop support for versions less than node v18 (#513)
* breaking: drop support for versions less than node v18 * fix: updates * Create gorgeous-snails-knock.md --------- Co-authored-by: Yosuke Ota <[email protected]>
1 parent b451cdb commit 3f0c57f

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

.changeset/gorgeous-snails-knock.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@intlify/eslint-plugin-vue-i18n": major
3+
---
4+
5+
breaking: drop support for versions less than node v18

.github/workflows/Release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
1717
fetch-depth: 0
1818

19-
- name: Setup Node.js 16
19+
- name: Setup Node.js 18
2020
uses: actions/setup-node@v4
2121
with:
22-
node-version: 16
22+
node-version: 18
2323

2424
- name: Enable corepack
2525
run: corepack enable

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
strategy:
3131
matrix:
3232
os: [ubuntu-latest]
33-
node: [18, 20]
33+
node: [18, 20, 22]
3434
steps:
3535
- name: Checkout
3636
uses: actions/checkout@v4

docs/started.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ npm install --save-dev eslint @intlify/eslint-plugin-vue-i18n
1111
::: tip Requirements
1212

1313
- ESLint v5.0.0 or later
14-
- Node.js v16.x or later
14+
- Node.js v18.x or later
1515

1616
:::
1717

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"url": "https://github.com/intlify/eslint-plugin-vue-i18n/issues"
2828
},
2929
"engines": {
30-
"node": ">=16.0.0"
30+
"node": ">=18.0.0"
3131
},
3232
"packageManager": "[email protected]",
3333
"type": "commonjs",

0 commit comments

Comments
 (0)