@razerspine/webpack-core 1.2.3 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +27 -0
- package/README.md +4 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,33 @@ required to ensure correct behavior in both development and production modes.
|
|
|
8
8
|
|
|
9
9
|
---
|
|
10
10
|
|
|
11
|
+
## [1.4.0] - 2026-02-19
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
|
|
15
|
+
- **Peer Dependency**: Updated `pug-plugin` peer dependency range from `^5` to `^5 || ^6`.
|
|
16
|
+
- Enables compatibility with `pug-plugin@6`.
|
|
17
|
+
- Removes installation conflicts when templates upgrade to the latest pug-plugin version.
|
|
18
|
+
- Preserves backward compatibility with existing templates using v5.
|
|
19
|
+
- **Internal Dev Alignment**: Updated local `devDependencies` to use `pug-plugin@^6.0.0` for internal testing and
|
|
20
|
+
validation.
|
|
21
|
+
|
|
22
|
+
### Security
|
|
23
|
+
|
|
24
|
+
- Resolves npm audit warnings caused by transitive dependencies
|
|
25
|
+
(`js-beautify → editorconfig → glob → minimatch`).
|
|
26
|
+
- No runtime changes were introduced.
|
|
27
|
+
- No production bundle impact.
|
|
28
|
+
|
|
29
|
+
### Notes
|
|
30
|
+
|
|
31
|
+
- This release does **not introduce breaking changes**.
|
|
32
|
+
- Public API remains unchanged.
|
|
33
|
+
- Fully backward compatible with existing templates.
|
|
34
|
+
- Recommended update before upgrading templates to `pug-plugin@6`.
|
|
35
|
+
|
|
36
|
+
---
|
|
37
|
+
|
|
11
38
|
## [1.2.3] - 2026-02-17
|
|
12
39
|
|
|
13
40
|
### Added
|
package/README.md
CHANGED
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
# @razerspine/webpack-core
|
|
2
|
+
[](https://www.npmjs.com/package/@razerspine/webpack-core)
|
|
3
|
+
[](./CHANGELOG.md)
|
|
4
|
+
[](./LICENSE)
|
|
5
|
+
|
|
2
6
|
|
|
3
7
|
Core webpack configuration and loaders for **Pug-based** projects.
|
|
4
8
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@razerspine/webpack-core",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"description": "Core webpack config and loaders for starter templates",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"webpack",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"peerDependencies": {
|
|
26
26
|
"webpack": "^5",
|
|
27
27
|
"webpack-dev-server": "^5",
|
|
28
|
-
"pug-plugin": "^5"
|
|
28
|
+
"pug-plugin": "^5 || ^6"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@types/node": "^20.11.0",
|
|
@@ -33,6 +33,6 @@
|
|
|
33
33
|
"webpack": "^5.105.0",
|
|
34
34
|
"webpack-dev-server": "^5.2.3",
|
|
35
35
|
"webpack-merge": "^5.10.0",
|
|
36
|
-
"pug-plugin": "^
|
|
36
|
+
"pug-plugin": "^6.0.0"
|
|
37
37
|
}
|
|
38
38
|
}
|