@clawos-dev/clawd 0.2.112-beta.218.6282fa2 → 0.2.112-beta.220.a78f1c0
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/cli.cjs +5 -4
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -41494,7 +41494,8 @@ function buildAppBuilderHandlers(deps) {
|
|
|
41494
41494
|
newPort: f.newPort,
|
|
41495
41495
|
sessionId: entry.sessionId,
|
|
41496
41496
|
cwd: entry.cwd,
|
|
41497
|
-
tunnelHost: entry.tunnelHost
|
|
41497
|
+
tunnelHost: entry.tunnelHost,
|
|
41498
|
+
devCommand: entry.devCommand
|
|
41498
41499
|
});
|
|
41499
41500
|
}
|
|
41500
41501
|
return { response: { project } };
|
|
@@ -41789,8 +41790,7 @@ var DevServerSupervisor = class extends import_node_events2.EventEmitter {
|
|
|
41789
41790
|
CLAWD_TUNNEL_HOST: args.tunnelHost ?? "",
|
|
41790
41791
|
CLAWD_PREVIEW_PORT: String(args.port)
|
|
41791
41792
|
};
|
|
41792
|
-
const
|
|
41793
|
-
const cmd = devCommand.replace(/\$CLAWD_PREVIEW_PORT/g, String(args.port));
|
|
41793
|
+
const cmd = args.devCommand.replace(/\$CLAWD_PREVIEW_PORT/g, String(args.port));
|
|
41794
41794
|
this.logger.info("dev-server.start", {
|
|
41795
41795
|
projectName: args.projectName,
|
|
41796
41796
|
port: args.port,
|
|
@@ -41885,7 +41885,8 @@ var DevServerSupervisor = class extends import_node_events2.EventEmitter {
|
|
|
41885
41885
|
sessionId: entry.sessionId,
|
|
41886
41886
|
cwd: entry.cwd,
|
|
41887
41887
|
port: entry.port,
|
|
41888
|
-
tunnelHost: entry.tunnelHost
|
|
41888
|
+
tunnelHost: entry.tunnelHost,
|
|
41889
|
+
devCommand: entry.devCommand
|
|
41889
41890
|
};
|
|
41890
41891
|
}
|
|
41891
41892
|
};
|
package/package.json
CHANGED