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 +3 -1
- package/dist/server/index.js +3 -1
- package/package.json +1 -1
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
|
|
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
|
|
package/dist/server/index.js
CHANGED
|
@@ -120,7 +120,9 @@ function openBrowser(url) {
|
|
|
120
120
|
execFile("open", [url]);
|
|
121
121
|
}
|
|
122
122
|
else if (process.platform === "win32") {
|
|
123
|
-
execFile("
|
|
123
|
+
execFile("rundll32", ["url.dll,FileProtocolHandler", url], {
|
|
124
|
+
windowsHide: true,
|
|
125
|
+
});
|
|
124
126
|
}
|
|
125
127
|
else {
|
|
126
128
|
execFile("xdg-open", [url]);
|