easyorders 0.1.5 → 0.1.7

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 +1 -4
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Easy Orders CLI
2
2
 
3
- CLI tool for creating and developing [EasyOrders](https://www.easy-orders.net) storefront themes. Edit Liquid templates, CSS, and JavaScript in the `theme/` folder and preview changes on a live store instantly.
3
+ CLI tool for creating and developing [EasyOrders](https://www.easyorders.eg) storefront themes. Edit Liquid templates, CSS, and JavaScript in the `theme/` folder and preview changes on a live store instantly.
4
4
 
5
5
  Full theme documentation — Liquid variables, palette, sections, events:
6
6
 
@@ -16,9 +16,6 @@ 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
-
20
-
21
-
22
19
  ## Usage
23
20
 
24
21
  ### Create a new theme project
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "easyorders",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
4
4
  "description": "CLI tool for creating and developing Easy Orders themes",
5
5
  "type": "module",
6
6
  "bin": {
@@ -17,7 +17,7 @@
17
17
  ],
18
18
  "license": "MIT",
19
19
  "scripts": {
20
- "build": "tsc && cp -r cli/template dist/template",
20
+ "build": "tsc && shx cp -r cli/template dist/template",
21
21
  "dev": "npx tsx cli/bin/cli.ts start",
22
22
  "create-theme": "npx tsx cli/bin/cli.ts create-theme"
23
23
  },
@@ -33,6 +33,7 @@
33
33
  "@types/express": "^4.17.21",
34
34
  "@types/node": "^22.10.0",
35
35
  "concurrently": "^9.2.1",
36
+ "shx": "^0.4.0",
36
37
  "tsx": "^4.19.2",
37
38
  "typescript": "^5.7.2"
38
39
  }