create-l5e 0.1.2 → 0.1.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/README.md CHANGED
@@ -3,15 +3,15 @@
3
3
  Create a L5E app from the official starter template.
4
4
 
5
5
  ```sh
6
- npm create l5e@alpha my-app -- --template basic
6
+ npm create l5e my-app -- --template basic
7
7
  ```
8
8
 
9
9
  Equivalent commands:
10
10
 
11
11
  ```sh
12
- npx create-l5e@alpha my-app --template basic
13
- pnpm create l5e@alpha my-app --template basic
14
- bun create l5e@alpha my-app --template basic
12
+ npx create-l5e my-app --template basic
13
+ pnpm create l5e my-app --template basic
14
+ bun create l5e my-app --template basic
15
15
  ```
16
16
 
17
17
  Available templates:
@@ -22,23 +22,22 @@ Available templates:
22
22
  Run the dev server immediately after install:
23
23
 
24
24
  ```sh
25
- pnpm create l5e@alpha my-app --template basic --dev
25
+ pnpm create l5e my-app --template basic --dev
26
26
  ```
27
27
 
28
- ## Publishing
29
-
30
- The package name must be `create-l5e`. npm maps `npm create l5e` to the
31
- `create-l5e` package name.
28
+ ## Pinning a version
32
29
 
33
- Publish the alpha:
30
+ By default the generator pulls the `latest` dist-tag. To track the alpha
31
+ channel or pin to a specific release:
34
32
 
35
33
  ```sh
36
- pnpm --filter create-l5e publish --tag alpha --no-git-checks
34
+ npm create l5e@alpha my-app # follow the alpha channel
35
+ npm create l5e@0.1.2 my-app # pin to an exact version
37
36
  ```
38
37
 
39
- After the package is stable, publish or move the dist tag to `latest` so users can run:
38
+ ## Publishing
40
39
 
41
- ```sh
42
- npm create l5e@latest my-app
43
- npx create-l5e@latest my-app
44
- ```
40
+ The package name must be `create-l5e`. npm maps `npm create l5e` to the
41
+ `create-l5e` package name. Releases for this package go out together with
42
+ `@withl5e/l5e` and `@withl5e/richtext-payload` via the tag-driven release
43
+ workflow — see [`RELEASE.md`](../../RELEASE.md) in the repo root.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-l5e",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Create an L5E app from the official starter template.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -11,7 +11,7 @@
11
11
  "typecheck": "tsc --noEmit"
12
12
  },
13
13
  "dependencies": {
14
- "@withl5e/l5e": "^0.1.2",
14
+ "@withl5e/l5e": "^0.1.3",
15
15
  "react": "^19.0.0",
16
16
  "react-dom": "^19.0.0"
17
17
  },
@@ -11,7 +11,7 @@
11
11
  "typecheck": "tsc --noEmit"
12
12
  },
13
13
  "dependencies": {
14
- "@withl5e/l5e": "^0.1.2",
14
+ "@withl5e/l5e": "^0.1.3",
15
15
  "react": "^19.0.0",
16
16
  "react-dom": "^19.0.0"
17
17
  },