Skip to content

Commit 2f7e803

Browse files
authored
Merge pull request #110 from yoriiis/updates-node-packages
Update Node.js and packages
2 parents 17f987e + 8a7f890 commit 2f7e803

15 files changed

Lines changed: 5638 additions & 2846 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
build:
1313
strategy:
1414
matrix:
15-
node-version: [18, 20, 22]
15+
node-version: [22, 24]
1616
os: [ubuntu-latest, macos-latest]
1717
uses: yoriiis/actions/.github/workflows/test-and-build.yml@main
1818
with:

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
lint:
1515
uses: yoriiis/actions/.github/workflows/lint.yml@main
1616
with:
17-
node-version: 20
17+
node-version: 24
1818
stylelint-status: false
1919
eslint-status: false
2020
biome-status: true

.github/workflows/npm-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ jobs:
1212
needs: lint
1313
uses: yoriiis/actions/.github/workflows/npm-publish.yml@main
1414
with:
15-
node-version: 20
15+
node-version: 24
1616
secrets:
1717
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
lts/jod
1+
lts/krypton

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# CHANGELOG
22

3+
## 13.0.0
4+
5+
### ⚠️ Breaking changes
6+
7+
- Updates Node.js ([#110](https://github.com/yoriiis/chunks-webpack-plugin/pull/110))
8+
- Minimum supported `Node.js` version is `>=22`
9+
- Updates other packages
10+
311
## 12.0.1
412

513
### Fixes

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023 Yoriiis
3+
Copyright (c) 2026 Yoriiis
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

biome.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
3-
"vcs": { "enabled": false, "clientKind": "git", "useIgnoreFile": false },
2+
"$schema": "https://biomejs.dev/schemas/2.3.4/schema.json",
3+
"vcs": {
4+
"enabled": true,
5+
"clientKind": "git",
6+
"useIgnoreFile": true
7+
},
48
"files": {
59
"ignoreUnknown": false,
6-
"ignore": ["**/node_modules", "**/coverage", "**/dist", "**/lib", "**/types"]
10+
"includes": ["**", "!example/dist"]
711
},
812
"formatter": {
913
"enabled": true,
@@ -16,7 +20,7 @@
1620
"attributePosition": "auto",
1721
"bracketSpacing": true
1822
},
19-
"organizeImports": { "enabled": true },
23+
"assist": { "actions": { "source": { "organizeImports": "on" } } },
2024
"linter": {
2125
"enabled": true,
2226
"rules": {

chunks-webpack-plugin.code-workspace

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@
2222
"editor.insertSpaces": true,
2323
"editor.autoIndent": "none"
2424
},
25+
"[javascript][typescript][css][json]": {
26+
"editor.codeActionsOnSave": {
27+
"quickfix.biome": "explicit",
28+
"source.organizeImports.biome": "explicit"
29+
}
30+
},
2531
"files.associations": {
2632
"*.css": "postcss",
2733
"*.html": "html",

example/dist/js/328.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

example/dist/js/app-b.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)