ccsini 0.1.54 → 0.1.56
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/dist/index.js +7 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -27932,7 +27932,9 @@ var init_constants = __esm(() => {
|
|
|
27932
27932
|
"**/*.bak",
|
|
27933
27933
|
"**/*.conflict",
|
|
27934
27934
|
"settings.*.json",
|
|
27935
|
-
"history.jsonl"
|
|
27935
|
+
"history.jsonl",
|
|
27936
|
+
"plugins/known_marketplaces.json",
|
|
27937
|
+
"plugins/install-counts-cache.json"
|
|
27936
27938
|
];
|
|
27937
27939
|
SESSION_SYNC_DEFAULTS = {
|
|
27938
27940
|
enabled: false,
|
|
@@ -28020,7 +28022,7 @@ var {
|
|
|
28020
28022
|
} = import__.default;
|
|
28021
28023
|
|
|
28022
28024
|
// src/version.ts
|
|
28023
|
-
var VERSION = "0.1.
|
|
28025
|
+
var VERSION = "0.1.56";
|
|
28024
28026
|
|
|
28025
28027
|
// src/commands/init.ts
|
|
28026
28028
|
init_source();
|
|
@@ -29941,6 +29943,7 @@ function registerInitCommand(program2) {
|
|
|
29941
29943
|
const child = spawn2("ccsini", ["daemon", "_run"], {
|
|
29942
29944
|
detached: true,
|
|
29943
29945
|
stdio: "ignore",
|
|
29946
|
+
windowsHide: true,
|
|
29944
29947
|
...isWin ? { shell: true } : {}
|
|
29945
29948
|
});
|
|
29946
29949
|
child.unref();
|
|
@@ -31817,6 +31820,7 @@ async function ensureDaemon(configDir) {
|
|
|
31817
31820
|
const child = spawn3("ccsini", ["daemon", "_run"], {
|
|
31818
31821
|
detached: true,
|
|
31819
31822
|
stdio: "ignore",
|
|
31823
|
+
windowsHide: true,
|
|
31820
31824
|
...isWin ? { shell: true } : {}
|
|
31821
31825
|
});
|
|
31822
31826
|
child.unref();
|
|
@@ -32635,6 +32639,7 @@ function registerDaemonCommands(program2) {
|
|
|
32635
32639
|
const child = spawn4("ccsini", ["daemon", "_run"], {
|
|
32636
32640
|
detached: true,
|
|
32637
32641
|
stdio: "ignore",
|
|
32642
|
+
windowsHide: true,
|
|
32638
32643
|
...isWin ? { shell: true } : {}
|
|
32639
32644
|
});
|
|
32640
32645
|
child.unref();
|