easyorders 0.1.0 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -13,13 +13,13 @@ The tunnel URL is tied to your current browser session. When you stop the dev se
13
13
  ## Installation
14
14
 
15
15
  ```bash
16
- npm install -g easy-orders
16
+ npm install -g easyorders
17
17
  ```
18
18
 
19
19
  Or use directly with `npx`:
20
20
 
21
21
  ```bash
22
- npx easy-orders
22
+ npx easyorders
23
23
  ```
24
24
 
25
25
  ## Usage
@@ -27,7 +27,7 @@ npx easy-orders
27
27
  ### Create a new theme project
28
28
 
29
29
  ```bash
30
- npx easy-orders create-theme my-theme
30
+ npx easyorders create-theme my-theme
31
31
  ```
32
32
 
33
33
  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 +36,7 @@ This scaffolds a new directory `my-theme/` containing only the `theme/` folder a
36
36
 
37
37
  ```bash
38
38
  cd my-theme
39
- npx easy-orders start
39
+ npx easyorders start
40
40
  ```
41
41
 
42
42
  This will:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "easyorders",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "CLI tool for creating and developing Easy Orders themes",
5
5
  "bin": {
6
6
  "easyorders": "cli/bin/cli.ts"