create-fate 1.6.0 → 1.6.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 +2 -8
- package/bin/create-fate.mjs +2 -2
- package/package.json +1 -1
- package/templates/fate/drizzle/README.md +1 -1
- package/templates/fate/graphql/README.md +1 -1
- package/templates/fate/graphql-client/README.md +1 -1
- package/templates/fate/http/README.md +1 -1
- package/templates/fate/prisma/README.md +1 -1
- package/templates/fate/void/README.md +1 -1
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Create a new fate app:
|
|
4
4
|
|
|
5
5
|
```sh
|
|
6
|
-
vp create fate
|
|
6
|
+
vp create fate
|
|
7
7
|
```
|
|
8
8
|
|
|
9
9
|
The generated app is installed and the fate client is generated during creation.
|
|
@@ -13,14 +13,8 @@ Choose between these templates:
|
|
|
13
13
|
- `void`: Void pages router with Drizzle, live updates, and native Cloudflare deployment.
|
|
14
14
|
- `drizzle`: tRPC with Drizzle.
|
|
15
15
|
- `graphql`: GraphQL with Prisma.
|
|
16
|
-
- `graphql-client`:
|
|
16
|
+
- `graphql-client`: Client for an existing GraphQL server (e.g. React or Vue).
|
|
17
17
|
- `http`: Native HTTP with Drizzle.
|
|
18
18
|
- `prisma`: tRPC with Prisma.
|
|
19
19
|
|
|
20
|
-
For a non-interactive install:
|
|
21
|
-
|
|
22
|
-
```sh
|
|
23
|
-
vp create fate my-app --template void
|
|
24
|
-
```
|
|
25
|
-
|
|
26
20
|
The template sources live in `packages/create-fate/templates/fate`.
|
package/bin/create-fate.mjs
CHANGED
|
@@ -696,8 +696,8 @@ const configureVueReadme = (targetPath, selectedVariant) => {
|
|
|
696
696
|
.replaceAll('fbtee setup, and ', '')
|
|
697
697
|
.replaceAll(', fbtee setup,', ',')
|
|
698
698
|
.replaceAll(
|
|
699
|
-
`vp create fate
|
|
700
|
-
`vp create fate
|
|
699
|
+
`vp create fate -- --template ${selectedVariant}`,
|
|
700
|
+
`vp create fate -- --template ${selectedVariant} --framework vue`,
|
|
701
701
|
)
|
|
702
702
|
.replaceAll('modern data client for React', 'modern data client for Vue')
|
|
703
703
|
.replaceAll(
|
package/package.json
CHANGED