@skafform/create 0.2.1 → 0.2.2

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.
Files changed (2) hide show
  1. package/README.md +6 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -5,7 +5,7 @@ Scaffold a new [Skafform](https://github.com/skafform) project with Next.js or N
5
5
  ## Usage
6
6
 
7
7
  ```bash
8
- npm create @skafform@latest <project-name> [next|nuxt]
8
+ npx @skafform/create <project-name> [next|nuxt]
9
9
  ```
10
10
 
11
11
  ## Options
@@ -21,13 +21,13 @@ npm create @skafform@latest <project-name> [next|nuxt]
21
21
 
22
22
  ```bash
23
23
  # Next.js (default)
24
- npm create @skafform@latest my-app
24
+ npx @skafform/create my-app
25
25
 
26
26
  # Next.js (explicit)
27
- npm create @skafform@latest my-app next
27
+ npx @skafform/create my-app next
28
28
 
29
29
  # Nuxt (coming soon)
30
- npm create @skafform@latest my-app nuxt
30
+ npx @skafform/create my-app nuxt
31
31
  ```
32
32
 
33
33
  ## What's included
@@ -51,7 +51,8 @@ my-app/
51
51
  │ ├── proxy.ts # Middleware logic (managed)
52
52
  │ └── providers.tsx # React providers (managed)
53
53
  ├── proxy.ts # User-owned middleware entry point
54
- └── ...
54
+ ├── app/
55
+ │ ├── layout.ts
55
56
  ```
56
57
 
57
58
  ## After scaffolding
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skafform/create",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Scaffold a new Skafform project",
5
5
  "bin": {
6
6
  "create-skafform": "./dist/index.js"