@episoda/cli 0.2.152 → 0.2.153
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.
|
@@ -2913,7 +2913,7 @@ var require_package = __commonJS({
|
|
|
2913
2913
|
"package.json"(exports2, module2) {
|
|
2914
2914
|
module2.exports = {
|
|
2915
2915
|
name: "@episoda/cli",
|
|
2916
|
-
version: "0.2.
|
|
2916
|
+
version: "0.2.153",
|
|
2917
2917
|
description: "CLI tool for Episoda local development workflow orchestration",
|
|
2918
2918
|
main: "dist/index.js",
|
|
2919
2919
|
types: "dist/index.d.ts",
|
|
@@ -7754,8 +7754,9 @@ async function handleWorktreeCreate(request2) {
|
|
|
7754
7754
|
createBranch,
|
|
7755
7755
|
repoUrl,
|
|
7756
7756
|
envVars,
|
|
7757
|
-
setupScript
|
|
7757
|
+
setupScript,
|
|
7758
7758
|
// EP1229: detachedHead removed - planning worktrees no longer exist
|
|
7759
|
+
moduleType
|
|
7759
7760
|
} = request2;
|
|
7760
7761
|
console.log(`[Worktree] K1273: Creating worktree for ${moduleUid}`);
|
|
7761
7762
|
console.log(`[Worktree] Project: ${projectSlug}`);
|
|
@@ -7878,7 +7879,9 @@ ${buildCmd}` : buildCmd;
|
|
|
7878
7879
|
}
|
|
7879
7880
|
let previewUrl;
|
|
7880
7881
|
let port;
|
|
7881
|
-
if (
|
|
7882
|
+
if (moduleType === "ops") {
|
|
7883
|
+
console.log(`[Worktree] EP1363: Skipping preview for ops module ${moduleUid}`);
|
|
7884
|
+
} else if (finalStatus === "ready" && !isCloud) {
|
|
7882
7885
|
port = allocatePort(moduleUid);
|
|
7883
7886
|
console.log(`[Worktree] EP1143: Allocated port ${port} for ${moduleUid}`);
|
|
7884
7887
|
const previewManager = getPreviewManager();
|