@xdevops/issue-auto-finish 1.0.67 → 1.0.69
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/{chunk-JBSXE5N6.js → chunk-DEM52VS6.js} +14 -4
- package/dist/{chunk-JBSXE5N6.js.map → chunk-DEM52VS6.js.map} +1 -1
- package/dist/{chunk-AVRJKH5C.js → chunk-EYGZJYIO.js} +1 -1
- package/dist/{chunk-4EGXVU5K.js → chunk-RPL2X7KB.js} +250 -12
- package/dist/chunk-RPL2X7KB.js.map +1 -0
- package/dist/{chunk-WQZSUZFT.js → chunk-VJD6TIKY.js} +57 -40
- package/dist/chunk-VJD6TIKY.js.map +1 -0
- package/dist/cli.js +3 -3
- package/dist/e2e/E2ESetupRunner.d.ts +28 -0
- package/dist/e2e/E2ESetupRunner.d.ts.map +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -3
- package/dist/{init-GL24QXK3.js → init-G75RO7SX.js} +2 -2
- package/dist/lib.js +1 -1
- package/dist/{restart-YVIYEF25.js → restart-2K7RHMYC.js} +2 -2
- package/dist/run.js +3 -3
- package/dist/{start-UMTB2CCT.js → start-NVOOEF2A.js} +2 -2
- package/dist/web/routes/setup.d.ts.map +1 -1
- package/dist/workspace/WorkspaceConfig.d.ts +5 -0
- package/dist/workspace/WorkspaceConfig.d.ts.map +1 -1
- package/dist/workspace/index.d.ts +1 -1
- package/dist/workspace/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/web/frontend/dist/assets/index-B8u7dV-R.js +127 -0
- package/src/web/frontend/dist/assets/index-BQKHLcAS.css +1 -0
- package/src/web/frontend/dist/index.html +2 -2
- package/dist/chunk-4EGXVU5K.js.map +0 -1
- package/dist/chunk-WQZSUZFT.js.map +0 -1
- package/src/web/frontend/dist/assets/index-BM-aPpBO.css +0 -1
- package/src/web/frontend/dist/assets/index-BYpsherD.js +0 -125
- /package/dist/{chunk-AVRJKH5C.js.map → chunk-EYGZJYIO.js.map} +0 -0
- /package/dist/{init-GL24QXK3.js.map → init-G75RO7SX.js.map} +0 -0
- /package/dist/{restart-YVIYEF25.js.map → restart-2K7RHMYC.js.map} +0 -0
- /package/dist/{start-UMTB2CCT.js.map → start-NVOOEF2A.js.map} +0 -0
|
@@ -4,7 +4,7 @@ import {
|
|
|
4
4
|
} from "./chunk-Z75EDBWI.js";
|
|
5
5
|
import {
|
|
6
6
|
createSetupRouter
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-RPL2X7KB.js";
|
|
8
8
|
import {
|
|
9
9
|
buildLockNoteBody,
|
|
10
10
|
buildReleaseNoteBody,
|
|
@@ -29,10 +29,11 @@ import {
|
|
|
29
29
|
isNoteSyncEnabledForIssue,
|
|
30
30
|
loadWorkspaceConfig,
|
|
31
31
|
metrics,
|
|
32
|
+
persistWorkspaceConfig,
|
|
32
33
|
setE2eOverride,
|
|
33
34
|
setNoteSyncOverride,
|
|
34
35
|
validatePhaseRegistry
|
|
35
|
-
} from "./chunk-
|
|
36
|
+
} from "./chunk-VJD6TIKY.js";
|
|
36
37
|
import {
|
|
37
38
|
AsyncMutex,
|
|
38
39
|
BaseTracker,
|
|
@@ -8414,7 +8415,16 @@ async function main() {
|
|
|
8414
8415
|
branchPrefix: tenantDef.overrides?.branchPrefix ?? config.project.branchPrefix,
|
|
8415
8416
|
projectSubDir: tenantDef.overrides?.projectSubDir ?? config.project.projectSubDir
|
|
8416
8417
|
};
|
|
8417
|
-
const
|
|
8418
|
+
const wsConfigFromFile = tenantDef.workspace ? loadWorkspaceConfig(tenantDef.workspace) : isDefault ? loadWorkspaceConfig(config.workspace.configPath) : null;
|
|
8419
|
+
let wsConfig;
|
|
8420
|
+
if (wsConfigFromFile) {
|
|
8421
|
+
wsConfig = wsConfigFromFile;
|
|
8422
|
+
} else {
|
|
8423
|
+
const project = isDefault ? config.project : projectForTenant;
|
|
8424
|
+
wsConfig = buildSingleRepoWorkspace(project, gongfengConfig.projectPath);
|
|
8425
|
+
const wsPath = isDefault ? config.workspace.configPath || path18.join(dataDir, "workspace.json") : path18.join(dataDir, `workspace-${tid}.json`);
|
|
8426
|
+
persistWorkspaceConfig(wsConfig, wsPath);
|
|
8427
|
+
}
|
|
8418
8428
|
const orchestrator = new PipelineOrchestrator(
|
|
8419
8429
|
config,
|
|
8420
8430
|
gongfeng,
|
|
@@ -8704,4 +8714,4 @@ function migrateKnowledgeDir(srcDir, destDir) {
|
|
|
8704
8714
|
export {
|
|
8705
8715
|
main
|
|
8706
8716
|
};
|
|
8707
|
-
//# sourceMappingURL=chunk-
|
|
8717
|
+
//# sourceMappingURL=chunk-DEM52VS6.js.map
|