Skip to content

Commit

Permalink
breaking: drop support for versions less than node v18 (#513)
Browse files Browse the repository at this point in the history
* breaking: drop support for versions less than node v18

* fix: updates

* Create gorgeous-snails-knock.md

---------

Co-authored-by: Yosuke Ota <otameshiyo23@gmail.com>
  • Loading branch information
kazupon and ota-meshi authored May 24, 2024
1 parent b451cdb commit 3f0c57f
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions .changeset/gorgeous-snails-knock.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@intlify/eslint-plugin-vue-i18n": major
---

breaking: drop support for versions less than node v18
4 changes: 2 additions & 2 deletions .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0

- name: Setup Node.js 16
- name: Setup Node.js 18
uses: actions/setup-node@v4
with:
node-version: 16
node-version: 18

- name: Enable corepack
run: corepack enable
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node: [18, 20]
node: [18, 20, 22]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion docs/started.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ npm install --save-dev eslint @intlify/eslint-plugin-vue-i18n
::: tip Requirements

- ESLint v5.0.0 or later
- Node.js v16.x or later
- Node.js v18.x or later

:::

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"url": "https://github.com/intlify/eslint-plugin-vue-i18n/issues"
},
"engines": {
"node": ">=16.0.0"
"node": ">=18.0.0"
},
"packageManager": "pnpm@8.15.8",
"type": "commonjs",
Expand Down

0 comments on commit 3f0c57f

Please sign in to comment.