create-shiftapi 0.0.3 → 0.0.5

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
@@ -1,5 +1,8 @@
1
1
  <p align="center">
2
- <img src="https://raw.githubusercontent.com/fcjr/shiftapi/main/assets/logo.svg" alt="ShiftAPI Logo">
2
+ <picture>
3
+ <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/fcjr/shiftapi/main/assets/logo-dark.svg">
4
+ <img src="https://raw.githubusercontent.com/fcjr/shiftapi/main/assets/logo.svg" alt="ShiftAPI Logo">
5
+ </picture>
3
6
  </p>
4
7
 
5
8
  # create-shiftapi
@@ -9,20 +12,20 @@ Scaffold a new [ShiftAPI](https://github.com/fcjr/shiftapi) fullstack app — Go
9
12
  ## Usage
10
13
 
11
14
  ```bash
12
- npm create shiftapi
15
+ npm create shiftapi@latest
13
16
  ```
14
17
 
15
18
  Or with pnpm / yarn:
16
19
 
17
20
  ```bash
18
- pnpm create shiftapi
19
- yarn create shiftapi
21
+ pnpm create shiftapi@latest
22
+ yarn create shiftapi@latest
20
23
  ```
21
24
 
22
25
  You can also pass the project name directly:
23
26
 
24
27
  ```bash
25
- npm create shiftapi my-app
28
+ npm create shiftapi@latest my-app
26
29
  ```
27
30
 
28
31
  ## 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.5",
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
  },