create-webpack-starter 0.2.2 → 0.2.3

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 +15 -1
  2. package/package.json +11 -1
package/CHANGELOG.md CHANGED
@@ -1,9 +1,23 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.2.3] - 2026-02-06
4
+
5
+ ### Added
6
+ - Explicit mono-repo metadata for npm publishing (`repository.directory`, `homepage`, `bugs`)
7
+
8
+ ### Changed
9
+ - Updated documentation links to use absolute GitHub URLs for mono-repo compatibility
10
+ - Improved README navigation reliability on npm registry
11
+
12
+ ### Notes
13
+ - This release stabilizes documentation visibility for mono-repo setups
14
+ - No functional changes to CLI behavior
15
+
16
+
3
17
  ## [0.2.2] - 2026-02-06
4
18
 
5
19
  ### Fixed
6
- - **Documentation links** in `README.md` now resolve correctly on npm and GitHub; relative paths updated.
20
+ - **Documentation links** in `README.md` now resolve correctly on npm and GitHub; paths updated.
7
21
 
8
22
  ### Notes
9
23
  - Republished package as **0.2.2**.
package/package.json CHANGED
@@ -1,10 +1,20 @@
1
1
  {
2
2
  "name": "create-webpack-starter",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "Create a webpack starter with Pug, SCSS, TS and more",
5
5
  "bin": {
6
6
  "create-webpack-starter": "bin/index.js"
7
7
  },
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/Razerspine/webpack-starter-monorepo.git",
11
+ "directory": "packages/create-webpack-starter"
12
+ },
13
+ "homepage": "https://github.com/Razerspine/webpack-starter-monorepo/tree/main/packages/create-webpack-starter#readme",
14
+ "bugs": {
15
+ "url": "https://github.com/Razerspine/webpack-starter-monorepo/issues"
16
+ },
17
+
8
18
  "files": [
9
19
  "bin",
10
20
  "dist",