@devness/useai-cli 0.6.0 → 0.6.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/dist/index.js +3 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -30,7 +30,7 @@ var SYSTEMD_SERVICE_PATH = join(homedir(), ".config", "systemd", "user", "useai-
|
|
|
30
30
|
var WINDOWS_STARTUP_SCRIPT_PATH = join(process.env["APPDATA"] ?? join(homedir(), "AppData", "Roaming"), "Microsoft", "Windows", "Start Menu", "Programs", "Startup", "useai-daemon.vbs");
|
|
31
31
|
|
|
32
32
|
// ../shared/dist/constants/version.js
|
|
33
|
-
var VERSION = "0.6.
|
|
33
|
+
var VERSION = "0.6.1";
|
|
34
34
|
|
|
35
35
|
// ../shared/dist/constants/defaults.js
|
|
36
36
|
var DEFAULT_CONFIG = {
|
|
@@ -4843,7 +4843,8 @@ async function ensureDaemon(options) {
|
|
|
4843
4843
|
const child = spawn(npxPath, npxArgs, {
|
|
4844
4844
|
detached: true,
|
|
4845
4845
|
stdio: "ignore",
|
|
4846
|
-
shell: isWindows2
|
|
4846
|
+
shell: isWindows2,
|
|
4847
|
+
windowsHide: true
|
|
4847
4848
|
});
|
|
4848
4849
|
child.unref();
|
|
4849
4850
|
const start = Date.now();
|