easyorders 0.1.17 → 0.1.18

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
@@ -8,7 +8,9 @@ Full theme documentation — Liquid variables, palette, sections, events:
8
8
 
9
9
  ## ⚠️ Important Notice
10
10
 
11
- The tunnel URL is tied to your current browser session. When you stop the dev server (tunnel) or close the theme editor, you **must close the browser entirely** to end the session. Otherwise the browser may continue trying to load the old tunnel URL, causing errors on subsequent runs.
11
+ The tunnel URL is linked to your current browser session. To end the session, stop the dev server, close the theme browser, or delete the `local_theme_src` cookie manually.
12
+
13
+ If the the site loads slowly after closing session, the browser may still be using a cached tunnel session. Deleting the `local_theme_src` cookie usually fixes the issue.
12
14
 
13
15
  ## Installation
14
16
 
@@ -120,7 +120,9 @@ function openBrowser(url) {
120
120
  execFile("open", [url]);
121
121
  }
122
122
  else if (process.platform === "win32") {
123
- execFile("cmd", ["/c", "start", "", url], { windowsHide: true });
123
+ execFile("rundll32", ["url.dll,FileProtocolHandler", url], {
124
+ windowsHide: true,
125
+ });
124
126
  }
125
127
  else {
126
128
  execFile("xdg-open", [url]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "easyorders",
3
- "version": "0.1.17",
3
+ "version": "0.1.18",
4
4
  "description": "CLI tool for creating and developing Easy Orders themes",
5
5
  "type": "module",
6
6
  "bin": {