create-webpack-starter 0.2.1 → 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.
- package/CHANGELOG.md +22 -0
- package/README.md +4 -4
- package/package.json +11 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
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
|
+
|
|
17
|
+
## [0.2.2] - 2026-02-06
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
- **Documentation links** in `README.md` now resolve correctly on npm and GitHub; paths updated.
|
|
21
|
+
|
|
22
|
+
### Notes
|
|
23
|
+
- Republished package as **0.2.2**.
|
|
24
|
+
|
|
3
25
|
## [0.2.1] - 2026-02-06
|
|
4
26
|
|
|
5
27
|
### Added
|
package/README.md
CHANGED
|
@@ -42,10 +42,10 @@ npx create-webpack-starter my-app \
|
|
|
42
42
|
|
|
43
43
|
Detailed documentation is available in the `/docs` directory:
|
|
44
44
|
|
|
45
|
-
- [Getting Started](
|
|
46
|
-
- [Templates](
|
|
47
|
-
- [webpack-core](
|
|
48
|
-
- [FAQ](
|
|
45
|
+
- [Getting Started](https://github.com/Razerspine/webpack-starter-monorepo/blob/main/packages/create-webpack-starter/docs/getting-started.md)
|
|
46
|
+
- [Templates](https://github.com/Razerspine/webpack-starter-monorepo/blob/main/packages/create-webpack-starter/docs/templates.md)
|
|
47
|
+
- [webpack-core](https://github.com/Razerspine/webpack-starter-monorepo/blob/main/packages/create-webpack-starter/docs/webpack-core.md)
|
|
48
|
+
- [FAQ](https://github.com/Razerspine/webpack-starter-monorepo/blob/main/packages/create-webpack-starter/docs/faq.md)
|
|
49
49
|
|
|
50
50
|
The documentation explains:
|
|
51
51
|
- how the CLI works internally
|
package/package.json
CHANGED
|
@@ -1,10 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-webpack-starter",
|
|
3
|
-
"version": "0.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",
|