create-l5e 0.1.0-alpha.0 → 0.1.1-alpha.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.
package/README.md
CHANGED
|
@@ -33,7 +33,7 @@ The package name must be `create-l5e`. npm maps `npm create l5e` to the
|
|
|
33
33
|
Publish the alpha:
|
|
34
34
|
|
|
35
35
|
```sh
|
|
36
|
-
pnpm --filter create-l5e publish --tag alpha
|
|
36
|
+
pnpm --filter create-l5e publish --tag alpha --no-git-checks
|
|
37
37
|
```
|
|
38
38
|
|
|
39
39
|
After the package is stable, publish or move the dist tag to `latest` so users can run:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-l5e",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1-alpha.1",
|
|
4
4
|
"description": "Create an L5E app from the official starter template.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"node": ">=20.19.0"
|
|
17
17
|
},
|
|
18
18
|
"publishConfig": {
|
|
19
|
-
"tag": "
|
|
19
|
+
"tag": "latest"
|
|
20
20
|
},
|
|
21
21
|
"scripts": {
|
|
22
22
|
"build": "node --check bin/create-l5e.js",
|