@absolutejs/absolute 0.19.0-beta.666 → 0.19.0-beta.668
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/index.js +654 -171
- package/dist/index.js +3 -2
- package/dist/index.js.map +3 -3
- package/dist/src/cli/workspaceTui.d.ts +29 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -182355,6 +182355,7 @@ init_startupBanner();
|
|
|
182355
182355
|
var host = env4.HOST ?? "localhost";
|
|
182356
182356
|
var port = env4.PORT ?? DEFAULT_PORT;
|
|
182357
182357
|
var visibility = env4.ABSOLUTE_WORKSPACE_SERVICE_VISIBILITY ?? "public";
|
|
182358
|
+
var managedByWorkspace = env4.ABSOLUTE_WORKSPACE_MANAGED === "1";
|
|
182358
182359
|
var localIP;
|
|
182359
182360
|
var args = argv;
|
|
182360
182361
|
var hostFlag = args.includes("--host");
|
|
@@ -182385,7 +182386,7 @@ var networking = (app) => app.listen({
|
|
|
182385
182386
|
}
|
|
182386
182387
|
} : {}
|
|
182387
182388
|
}, () => {
|
|
182388
|
-
if (visibility === "internal") {
|
|
182389
|
+
if (visibility === "internal" || managedByWorkspace) {
|
|
182389
182390
|
return;
|
|
182390
182391
|
}
|
|
182391
182392
|
const isHotReload = Boolean(globalThis.__hmrServerStartup);
|
|
@@ -188807,5 +188808,5 @@ export {
|
|
|
188807
188808
|
ANGULAR_INIT_TIMEOUT_MS
|
|
188808
188809
|
};
|
|
188809
188810
|
|
|
188810
|
-
//# debugId=
|
|
188811
|
+
//# debugId=2F8EDE59772BBE0764756E2164756E21
|
|
188811
188812
|
//# sourceMappingURL=index.js.map
|