easyorders 0.1.4 → 0.1.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 +4 -7
- package/dist/bin/cli.js +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -16,18 +16,15 @@ The tunnel URL is tied to your current browser session. When you stop the dev se
|
|
|
16
16
|
npm install -g easyorders
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
-
Or use directly with `npx`:
|
|
20
19
|
|
|
21
|
-
|
|
22
|
-
npx easyorders
|
|
23
|
-
```
|
|
20
|
+
|
|
24
21
|
|
|
25
22
|
## Usage
|
|
26
23
|
|
|
27
24
|
### Create a new theme project
|
|
28
25
|
|
|
29
26
|
```bash
|
|
30
|
-
|
|
27
|
+
easyorders create-theme my-theme
|
|
31
28
|
```
|
|
32
29
|
|
|
33
30
|
This scaffolds a new directory `my-theme/` containing only the `theme/` folder and a minimal `package.json`. No server code is included — the server runs from the CLI package itself.
|
|
@@ -36,7 +33,7 @@ This scaffolds a new directory `my-theme/` containing only the `theme/` folder a
|
|
|
36
33
|
|
|
37
34
|
```bash
|
|
38
35
|
cd my-theme
|
|
39
|
-
|
|
36
|
+
easyorders start
|
|
40
37
|
```
|
|
41
38
|
|
|
42
39
|
This will:
|
|
@@ -48,7 +45,7 @@ This will:
|
|
|
48
45
|
|
|
49
46
|
### Interactive mode
|
|
50
47
|
|
|
51
|
-
Running `
|
|
48
|
+
Running `easyorders` without arguments shows an interactive menu where you can choose to create a theme or start the dev server.
|
|
52
49
|
|
|
53
50
|
## Environment Variables
|
|
54
51
|
|
package/dist/bin/cli.js
CHANGED
|
File without changes
|