Skip to content

Commit

Permalink
Merge pull request #100 from yoriiis/feat/updates-2024
Browse files Browse the repository at this point in the history
Update packages and nodejs
  • Loading branch information
yoriiis authored Feb 16, 2024
2 parents e522009 + 4e4ea26 commit b715f57
Show file tree
Hide file tree
Showing 18 changed files with 3,387 additions and 4,517 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18.16.0
lts/iron
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# CHANGELOG

## 11.0.0

### ⚠️ Breaking changes

- Updates Node.js ([#100](https://github.com/yoriiis/chunks-webpack-plugin/pull/100))
- Minimum supported `Node.js` version is `18.19.0`
- Updates other packages

## 10.0.0

### ⚠️ Breaking changes
Expand Down
12 changes: 6 additions & 6 deletions example/dist/chunks-manifest.json
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
{
"shared/app-a": {
"styles": [
"/dist/css/747.css",
"/dist/css/328.css",
"/dist/css/shared/app-a.css"
],
"scripts": [
"/dist/js/747.js",
"/dist/js/328.js",
"/dist/js/shared/app-a.js"
]
},
"app-b": {
"styles": [
"/dist/css/747.css",
"/dist/css/328.css",
"/dist/css/app-b.css"
],
"scripts": [
"/dist/js/747.js",
"/dist/js/328.js",
"/dist/js/app-b.js"
]
},
"app-c": {
"styles": [
"/dist/css/747.css",
"/dist/css/328.css",
"/dist/css/app-c.css"
],
"scripts": [
"/dist/js/747.js",
"/dist/js/328.js",
"/dist/js/app-c.js"
]
}
Expand Down
2 changes: 1 addition & 1 deletion example/dist/css/747.css → example/dist/css/328.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions example/dist/js/328.js

Large diffs are not rendered by default.

11 changes: 0 additions & 11 deletions example/dist/js/747.js

This file was deleted.

2 changes: 1 addition & 1 deletion example/dist/js/app-b.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion example/dist/js/app-c.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion example/dist/js/lib-dynamic.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion example/dist/js/shared/app-a.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion example/dist/templates/app-b-scripts.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<script defer src="https://cdn.domain.com/dist/js/747.js"></script><script defer src="https://cdn.domain.com/dist/js/app-b.js"></script>
<script defer src="https://cdn.domain.com/dist/js/328.js"></script><script defer src="https://cdn.domain.com/dist/js/app-b.js"></script>
2 changes: 1 addition & 1 deletion example/dist/templates/app-b-styles.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<link rel="stylesheet" href="https://cdn.domain.com/dist/css/747.css" /><link rel="stylesheet" href="https://cdn.domain.com/dist/css/app-b.css" />
<link rel="stylesheet" href="https://cdn.domain.com/dist/css/328.css" /><link rel="stylesheet" href="https://cdn.domain.com/dist/css/app-b.css" />
2 changes: 1 addition & 1 deletion example/dist/templates/app-c-scripts.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<script defer src="https://cdn.domain.com/dist/js/747.js"></script><script defer src="https://cdn.domain.com/dist/js/app-c.js"></script>
<script defer src="https://cdn.domain.com/dist/js/328.js"></script><script defer src="https://cdn.domain.com/dist/js/app-c.js"></script>
2 changes: 1 addition & 1 deletion example/dist/templates/app-c-styles.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<link rel="stylesheet" href="https://cdn.domain.com/dist/css/747.css" /><link rel="stylesheet" href="https://cdn.domain.com/dist/css/app-c.css" />
<link rel="stylesheet" href="https://cdn.domain.com/dist/css/328.css" /><link rel="stylesheet" href="https://cdn.domain.com/dist/css/app-c.css" />
2 changes: 1 addition & 1 deletion example/dist/templates/shared/app-a-scripts.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<script defer src="https://cdn.domain.com/dist/js/747.js"></script><script defer src="https://cdn.domain.com/dist/js/shared/app-a.js"></script>
<script defer src="https://cdn.domain.com/dist/js/328.js"></script><script defer src="https://cdn.domain.com/dist/js/shared/app-a.js"></script>
2 changes: 1 addition & 1 deletion example/dist/templates/shared/app-a-styles.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<link rel="stylesheet" href="https://cdn.domain.com/dist/css/747.css" /><link rel="stylesheet" href="https://cdn.domain.com/dist/css/shared/app-a.css" />
<link rel="stylesheet" href="https://cdn.domain.com/dist/css/328.css" /><link rel="stylesheet" href="https://cdn.domain.com/dist/css/shared/app-a.css" />
Loading

0 comments on commit b715f57

Please sign in to comment.