@razerspine/webpack-core 1.2.3 → 1.4.1

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +37 -0
  2. package/README.md +4 -0
  3. package/package.json +12 -3
package/CHANGELOG.md CHANGED
@@ -8,6 +8,43 @@ required to ensure correct behavior in both development and production modes.
8
8
 
9
9
  ---
10
10
 
11
+ ## [1.4.1] - 2026-02-19
12
+
13
+ ### Changed
14
+
15
+ - **Package Metadata**: Updated `package.json` to reflect its place within the monorepo.
16
+ - Added `repository` information pointing to the specific subdirectory.
17
+ - Added `homepage` and `bugs` URLs for better transparency and issue tracking.
18
+
19
+ ---
20
+
21
+ ## [1.4.0] - 2026-02-19
22
+
23
+ ### Changed
24
+
25
+ - **Peer Dependency**: Updated `pug-plugin` peer dependency range from `^5` to `^5 || ^6`.
26
+ - Enables compatibility with `pug-plugin@6`.
27
+ - Removes installation conflicts when templates upgrade to the latest pug-plugin version.
28
+ - Preserves backward compatibility with existing templates using v5.
29
+ - **Internal Dev Alignment**: Updated local `devDependencies` to use `pug-plugin@^6.0.0` for internal testing and
30
+ validation.
31
+
32
+ ### Security
33
+
34
+ - Resolves npm audit warnings caused by transitive dependencies
35
+ (`js-beautify → editorconfig → glob → minimatch`).
36
+ - No runtime changes were introduced.
37
+ - No production bundle impact.
38
+
39
+ ### Notes
40
+
41
+ - This release does **not introduce breaking changes**.
42
+ - Public API remains unchanged.
43
+ - Fully backward compatible with existing templates.
44
+ - Recommended update before upgrading templates to `pug-plugin@6`.
45
+
46
+ ---
47
+
11
48
  ## [1.2.3] - 2026-02-17
12
49
 
13
50
  ### Added
package/README.md CHANGED
@@ -1,4 +1,8 @@
1
1
  # @razerspine/webpack-core
2
+ [![npm version](https://img.shields.io/npm/v/@razerspine/webpack-core.svg)](https://www.npmjs.com/package/@razerspine/webpack-core)
3
+ [![changelog](https://img.shields.io/badge/docs-changelog-blue.svg)](./CHANGELOG.md)
4
+ [![license](https://img.shields.io/npm/l/@razerspine/webpack-core.svg)](./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.2.3",
3
+ "version": "1.4.1",
4
4
  "description": "Core webpack config and loaders for starter templates",
5
5
  "keywords": [
6
6
  "webpack",
@@ -10,6 +10,15 @@
10
10
  ],
11
11
  "license": "ISC",
12
12
  "author": "Razerspine",
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "https://github.com/Razerspine/webpack-starter-monorepo",
16
+ "directory": "packages/webpack-core"
17
+ },
18
+ "homepage": "https://github.com/Razerspine/webpack-starter-monorepo/blob/main/packages/webpack-core#readme",
19
+ "bugs": {
20
+ "url": "https://github.com/Razerspine/webpack-starter-monorepo/issues"
21
+ },
13
22
  "type": "commonjs",
14
23
  "main": "dist/index.js",
15
24
  "types": "dist/index.d.ts",
@@ -25,7 +34,7 @@
25
34
  "peerDependencies": {
26
35
  "webpack": "^5",
27
36
  "webpack-dev-server": "^5",
28
- "pug-plugin": "^5"
37
+ "pug-plugin": "^5 || ^6"
29
38
  },
30
39
  "devDependencies": {
31
40
  "@types/node": "^20.11.0",
@@ -33,6 +42,6 @@
33
42
  "webpack": "^5.105.0",
34
43
  "webpack-dev-server": "^5.2.3",
35
44
  "webpack-merge": "^5.10.0",
36
- "pug-plugin": "^5.0.3"
45
+ "pug-plugin": "^6.0.0"
37
46
  }
38
47
  }