@murumets-ee/create 0.13.0 → 0.13.2
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 +15 -4
- package/package.json +5 -2
- package/templates/template-demo.tar.gz +0 -0
package/README.md
CHANGED
|
@@ -1,15 +1,26 @@
|
|
|
1
1
|
# @murumets-ee/create
|
|
2
2
|
|
|
3
|
-
Project
|
|
3
|
+
Project scaffolder for [Lumi CMS](https://github.com/murumets-ee/lumi-cms) — a modular, type-safe CMS toolkit for Node.js.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
## Usage
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
This is a one-shot scaffolder. Don't `npm install` it — invoke it with `npm create` / `pnpm dlx`.
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
|
|
10
|
+
# Recommended (works through the create-FOO shorthand):
|
|
11
|
+
npm create lumi-cms my-app
|
|
12
|
+
pnpm create lumi-cms my-app
|
|
13
|
+
|
|
14
|
+
# Or the canonical scoped form:
|
|
15
|
+
pnpm dlx @murumets-ee/create@latest my-app --full
|
|
11
16
|
```
|
|
12
17
|
|
|
18
|
+
The first three forms go through the [`create-lumi-cms`](https://www.npmjs.com/package/create-lumi-cms) wrapper, which delegates here. They behave identically.
|
|
19
|
+
|
|
20
|
+
> **Heads-up — name collision.** The unscoped name `create-lumi` on npm is held by an unrelated project. Do **NOT** run `npm create lumi`, `pnpm create lumi`, or `pnpm dlx create-lumi` — those resolve to the squatted package. Always use `lumi-cms` (with `-cms` suffix) or the scoped `@murumets-ee/create` form.
|
|
21
|
+
|
|
22
|
+
For all flags, presets, environment setup, and post-scaffold steps see the [Lumi CMS root README](https://github.com/murumets-ee/lumi-cms#quick-start-new-project).
|
|
23
|
+
|
|
13
24
|
## License
|
|
14
25
|
|
|
15
26
|
[Elastic License 2.0 (ELv2)](../../LICENSE)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@murumets-ee/create",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.2",
|
|
4
4
|
"license": "Elastic-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -10,6 +10,9 @@
|
|
|
10
10
|
".": {
|
|
11
11
|
"types": "./dist/index.d.mts",
|
|
12
12
|
"import": "./dist/index.mjs"
|
|
13
|
+
},
|
|
14
|
+
"./cli": {
|
|
15
|
+
"import": "./dist/cli.mjs"
|
|
13
16
|
}
|
|
14
17
|
},
|
|
15
18
|
"files": [
|
|
@@ -26,7 +29,7 @@
|
|
|
26
29
|
"tsdown": "^0.21.10",
|
|
27
30
|
"tsx": "^4.21.0",
|
|
28
31
|
"typescript": "^5.7.3",
|
|
29
|
-
"@murumets-ee/cli": "^0.13.
|
|
32
|
+
"@murumets-ee/cli": "^0.13.2"
|
|
30
33
|
},
|
|
31
34
|
"typeCoverage": {
|
|
32
35
|
"atLeast": 100
|
|
Binary file
|