create-kora-app 0.1.14 → 0.1.16
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 +9 -4
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -13,19 +13,24 @@ pnpm dev
|
|
|
13
13
|
|
|
14
14
|
## Templates
|
|
15
15
|
|
|
16
|
-
- **react-
|
|
17
|
-
- **react-
|
|
16
|
+
- **react-tailwind-sync** — React + Tailwind + sync server (recommended)
|
|
17
|
+
- **react-tailwind** — React + Tailwind, local-only
|
|
18
|
+
- **react-sync** — React + CSS + sync server
|
|
19
|
+
- **react-basic** — React + CSS, local-only
|
|
18
20
|
|
|
19
21
|
## Options
|
|
20
22
|
|
|
21
23
|
```bash
|
|
22
|
-
npx create-kora-app my-app --template react-sync --pm pnpm
|
|
24
|
+
npx create-kora-app my-app --template react-tailwind-sync --pm pnpm
|
|
23
25
|
```
|
|
24
26
|
|
|
25
27
|
| Option | Description |
|
|
26
28
|
|--------|-------------|
|
|
27
|
-
| `--template` | `react-
|
|
29
|
+
| `--template` | `react-tailwind-sync`, `react-tailwind`, `react-sync`, or `react-basic` |
|
|
28
30
|
| `--pm` | Package manager: `pnpm`, `npm`, `yarn`, `bun` |
|
|
29
31
|
| `--skip-install` | Skip dependency installation |
|
|
32
|
+
| `--yes` / `-y` | Accept recommended defaults |
|
|
33
|
+
| `--tailwind` / `--no-tailwind` | Choose Tailwind styling |
|
|
34
|
+
| `--sync` / `--no-sync` | Choose sync-enabled template |
|
|
30
35
|
|
|
31
36
|
See the [full documentation](https://github.com/ehoneahobed/kora) for guides, API reference, and examples.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-kora-app",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.16",
|
|
4
4
|
"description": "Create a new Kora.js offline-first application",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"bin.js"
|
|
11
11
|
],
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@korajs/cli": "
|
|
13
|
+
"@korajs/cli": "workspace:*"
|
|
14
14
|
},
|
|
15
15
|
"license": "MIT"
|
|
16
|
-
}
|
|
16
|
+
}
|