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 CHANGED
@@ -3,7 +3,7 @@
3
3
  Create a new fate app:
4
4
 
5
5
  ```sh
6
- vp create fate my-app
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`: React client for an existing GraphQL server.
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`.
@@ -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 my-app --template ${selectedVariant}`,
700
- `vp create fate my-app --template ${selectedVariant} --framework vue`,
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-fate",
3
- "version": "1.6.0",
3
+ "version": "1.6.1",
4
4
  "description": "Create a new fate app.",
5
5
  "homepage": "https://github.com/nkzw-tech/fate",
6
6
  "license": "MIT",
@@ -9,7 +9,7 @@ Check out [fate.technology](https://fate.technology) for documentation, examples
9
9
  Create a new fate app with Vite+:
10
10
 
11
11
  ```bash
12
- vp create fate my-app --template drizzle
12
+ vp create fate -- --template drizzle
13
13
  ```
14
14
 
15
15
  ## Getting Started with _fate_
@@ -9,7 +9,7 @@ Check out [fate.technology](https://fate.technology) for documentation, examples
9
9
  Create a new fate app with Vite+:
10
10
 
11
11
  ```bash
12
- vp create fate my-app --template graphql
12
+ vp create fate -- --template graphql
13
13
  ```
14
14
 
15
15
  ## Getting Started with _fate_
@@ -7,7 +7,7 @@
7
7
  Use this template when you want to use _fate_ with an existing GraphQL server.
8
8
 
9
9
  ```bash
10
- vp create fate my-app --template graphql-client
10
+ vp create fate -- --template graphql-client
11
11
  ```
12
12
 
13
13
  ## Connect Your Server
@@ -9,7 +9,7 @@ Check out [fate.technology](https://fate.technology) for documentation, examples
9
9
  Create a new fate app with Vite+:
10
10
 
11
11
  ```bash
12
- vp create fate my-app --template http
12
+ vp create fate -- --template http
13
13
  ```
14
14
 
15
15
  ## Getting Started with _fate_
@@ -9,7 +9,7 @@ Check out [fate.technology](https://fate.technology) for documentation, examples
9
9
  Create a new fate app with Vite+:
10
10
 
11
11
  ```bash
12
- vp create fate my-app --template prisma
12
+ vp create fate -- --template prisma
13
13
  ```
14
14
 
15
15
  ## Getting Started with _fate_
@@ -3,7 +3,7 @@
3
3
  Create a new fate app with Vite+:
4
4
 
5
5
  ```bash
6
- vp create fate my-app --template void
6
+ vp create fate -- --template void
7
7
  ```
8
8
 
9
9
  This template uses the Void pages router with Drizzle, `void-fate`, `react-fate`, Better Auth, Tailwind, and React Compiler.