create-shiftapi 0.0.3 → 0.0.4

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
@@ -9,20 +9,20 @@ Scaffold a new [ShiftAPI](https://github.com/fcjr/shiftapi) fullstack app — Go
9
9
  ## Usage
10
10
 
11
11
  ```bash
12
- npm create shiftapi
12
+ npm create shiftapi@latest
13
13
  ```
14
14
 
15
15
  Or with pnpm / yarn:
16
16
 
17
17
  ```bash
18
- pnpm create shiftapi
19
- yarn create shiftapi
18
+ pnpm create shiftapi@latest
19
+ yarn create shiftapi@latest
20
20
  ```
21
21
 
22
22
  You can also pass the project name directly:
23
23
 
24
24
  ```bash
25
- npm create shiftapi my-app
25
+ npm create shiftapi@latest my-app
26
26
  ```
27
27
 
28
28
  ## What You Get
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-shiftapi",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "description": "Scaffold a new ShiftAPI fullstack app",
5
5
  "author": "Frank Chiarulli Jr. <frank@frankchiarulli.com>",
6
6
  "license": "MIT",
@@ -11,6 +11,7 @@
11
11
  node_modules/
12
12
  dist/
13
13
  .turbo/
14
+ .shiftapi/
14
15
 
15
16
  # Env
16
17
  .env
@@ -9,7 +9,7 @@
9
9
  "jsx": "react-jsx",
10
10
  "paths": {
11
11
  "@shiftapi/client": [
12
- "./node_modules/.shiftapi/client.d.ts"
12
+ "./.shiftapi/client.d.ts"
13
13
  ]
14
14
  }
15
15
  },
@@ -8,7 +8,7 @@
8
8
  "skipLibCheck": true,
9
9
  "paths": {
10
10
  "@shiftapi/client": [
11
- "./node_modules/.shiftapi/client.d.ts"
11
+ "./.shiftapi/client.d.ts"
12
12
  ]
13
13
  }
14
14
  },