@razerspine/webpack-core 1.9.0 → 1.10.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 +14 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,20 @@ required to ensure correct behavior in both development and production modes.
|
|
|
8
8
|
|
|
9
9
|
---
|
|
10
10
|
|
|
11
|
+
## [1.10.0] - 2026-03-13
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
- **Dependency Update**: Upgraded `pug-plugin` to `^6.1.0`.
|
|
15
|
+
- Fixes vulnerabilities in transitive dependencies by forcing `minimatch@10` and `glob@13`.
|
|
16
|
+
- Includes the latest `html-bundler-webpack-plugin` for improved asset handling.
|
|
17
|
+
- **Environment Requirements**: Updated minimum required **Node.js version to 20**.
|
|
18
|
+
- **Cleanup**: Prepared for the removal of manual `overrides` in consumer templates (resolves [issue #110](https://github.com/webdiscus/pug-plugin/issues/110)).
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
- **Security**: Eliminated deep-level dependency warnings related to older versions of `glob` and `minimatch`.
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
11
25
|
## [1.9.0] - 2026-03-13
|
|
12
26
|
|
|
13
27
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@razerspine/webpack-core",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.10.0",
|
|
4
4
|
"description": "Core webpack config and loaders for starter templates",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"webpack",
|
|
@@ -42,6 +42,6 @@
|
|
|
42
42
|
"webpack": "^5.105.0",
|
|
43
43
|
"webpack-dev-server": "^5.2.3",
|
|
44
44
|
"webpack-merge": "^5.10.0",
|
|
45
|
-
"pug-plugin": "^6.
|
|
45
|
+
"pug-plugin": "^6.1.0"
|
|
46
46
|
}
|
|
47
47
|
}
|