server-studio 1.1.0 → 1.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.
- package/README.md +7 -3
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -206,9 +206,13 @@ Opening a terminal window is tested for real too, not just in theory: CI calls i
|
|
|
206
206
|
command actually ran in the right folder. Linux gets a desktop from Xvfb with xterm, Windows runs it
|
|
207
207
|
directly, and macOS is verified by hand since its runners have no scriptable Terminal.
|
|
208
208
|
|
|
209
|
-
The
|
|
210
|
-
|
|
211
|
-
|
|
209
|
+
The **Browse** button opens a native dialog, so CI opens it for real on all three platforms and
|
|
210
|
+
cancels it, checking the app gets a clean cancel rather than hanging. A machine with no picker
|
|
211
|
+
installed is covered too, and reports cancelled instead of erroring.
|
|
212
|
+
|
|
213
|
+
The one step no machine can do is click a folder and confirm, so the path that returns a chosen
|
|
214
|
+
directory is exercised by hand rather than by CI. If Browse ever misbehaves on your system, type the
|
|
215
|
+
path into the field instead. Nothing else depends on it.
|
|
212
216
|
|
|
213
217
|
## Your data
|
|
214
218
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "server-studio",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "A tiny dashboard for your local dev servers. One click to run, stop and open them, with one permanent port per project.",
|
|
5
5
|
"author": "Md Mahdi Hasan",
|
|
6
6
|
"license": "MIT",
|
|
@@ -20,7 +20,8 @@
|
|
|
20
20
|
"prepack": "node scripts/build-plugin.js",
|
|
21
21
|
"test": "node scripts/test.js",
|
|
22
22
|
"test:terminal": "node scripts/test-terminal.js",
|
|
23
|
-
"postinstall": "node scripts/postinstall.js"
|
|
23
|
+
"postinstall": "node scripts/postinstall.js",
|
|
24
|
+
"test:picker": "node scripts/test-picker.js"
|
|
24
25
|
},
|
|
25
26
|
"files": [
|
|
26
27
|
"bin",
|