@rubytech/create-maxy 1.0.792 → 1.0.793
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/__tests__/brew-install.test.js +141 -0
- package/dist/__tests__/brew-resolve.test.js +103 -0
- package/dist/__tests__/launchd-plist.test.js +149 -0
- package/dist/__tests__/macos-version.test.js +96 -0
- package/dist/__tests__/platform-detect.test.js +50 -0
- package/dist/brew-install.js +175 -0
- package/dist/brew-resolve.js +68 -0
- package/dist/index.js +305 -27
- package/dist/launchd-plist.js +68 -0
- package/dist/macos-version.js +53 -0
- package/dist/platform-detect.js +36 -0
- package/dist/uninstall.js +47 -0
- package/package.json +1 -1
- package/payload/platform/plugins/docs/references/deployment.md +15 -3
- package/payload/server/chunk-ZVUVUP6R.js +9892 -0
- package/payload/server/maxy-edge.js +1 -1
- package/payload/server/server.js +2 -2
package/payload/server/server.js
CHANGED
|
@@ -49,7 +49,7 @@ import {
|
|
|
49
49
|
vncLog,
|
|
50
50
|
waitForExit,
|
|
51
51
|
writeChromiumWrapper
|
|
52
|
-
} from "./chunk-
|
|
52
|
+
} from "./chunk-ZVUVUP6R.js";
|
|
53
53
|
import {
|
|
54
54
|
ACCOUNTS_DIR,
|
|
55
55
|
GREETING_DIRECTIVE,
|
|
@@ -9679,7 +9679,7 @@ app21.post("/setup", requireAdminSession, async (c) => {
|
|
|
9679
9679
|
let actionId;
|
|
9680
9680
|
let unit;
|
|
9681
9681
|
try {
|
|
9682
|
-
const launched = await launchAction("cloudflare-setup", { positional: args });
|
|
9682
|
+
const launched = await launchAction("cloudflare-setup", { positional: args, streamLogPath });
|
|
9683
9683
|
actionId = launched.actionId;
|
|
9684
9684
|
unit = launched.unit;
|
|
9685
9685
|
} catch (e) {
|