create-zfb 0.1.0-next.3 → 0.1.0-next.6
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 +6 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
> **Newer releases:** see https://takazudomodular.com/pj/zudo-front-builder/docs/changelog/ for v0.1.0-next.5 and later. Entries below are historical (kept for npm readers).
|
|
4
|
+
|
|
5
|
+
## 0.1.0-next.4
|
|
6
|
+
|
|
7
|
+
Scaffolded projects now pin to the exact CLI version (`=<ver>` instead of `^<ver>`) in the generated `package.json`. This is a meaningful behavior change: previously `npm create zfb@latest` could silently resolve a compatible stable release once `0.1.0` lands; the exact pin prevents that. See #343.
|
|
8
|
+
|
|
3
9
|
## 0.1.0-next.1
|
|
4
10
|
|
|
5
11
|
Initial public prerelease on npm.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-zfb",
|
|
3
|
-
"version": "0.1.0-next.
|
|
3
|
+
"version": "0.1.0-next.6",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Scaffold a new zfb static-site project: `npm create zfb@latest my-site`",
|
|
@@ -32,6 +32,6 @@
|
|
|
32
32
|
"LICENSE"
|
|
33
33
|
],
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@takazudo/zfb": "0.1.0-next.
|
|
35
|
+
"@takazudo/zfb": "0.1.0-next.6"
|
|
36
36
|
}
|
|
37
37
|
}
|