@razerspine/webpack-core 1.4.0 → 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 (2) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/package.json +10 -1
package/CHANGELOG.md CHANGED
@@ -8,6 +8,16 @@ 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
+
11
21
  ## [1.4.0] - 2026-02-19
12
22
 
13
23
  ### Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@razerspine/webpack-core",
3
- "version": "1.4.0",
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",