@lumenflow/core 2.18.1 → 2.18.2
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/micro-worktree.d.ts +1 -1
- package/dist/micro-worktree.js +1 -1
- package/package.json +10 -2
package/dist/micro-worktree.d.ts
CHANGED
|
@@ -125,7 +125,7 @@ export declare const LUMENFLOW_FORCE_REASON_ENV = "LUMENFLOW_FORCE_REASON";
|
|
|
125
125
|
* WU-1365: Exported for use by CLI commands that use micro-worktree operations.
|
|
126
126
|
* The pre-push hook checks this env var to allow micro-worktree pushes to main.
|
|
127
127
|
* Valid values are: wu-create, wu-edit, wu-done, wu-delete, wu-claim, wu-block,
|
|
128
|
-
* wu-unblock, initiative-create, initiative-edit, release
|
|
128
|
+
* wu-unblock, initiative-create, initiative-edit, release, lumenflow-upgrade
|
|
129
129
|
*/
|
|
130
130
|
export declare const LUMENFLOW_WU_TOOL_ENV = "LUMENFLOW_WU_TOOL";
|
|
131
131
|
/**
|
package/dist/micro-worktree.js
CHANGED
|
@@ -98,7 +98,7 @@ export const LUMENFLOW_FORCE_REASON_ENV = 'LUMENFLOW_FORCE_REASON';
|
|
|
98
98
|
* WU-1365: Exported for use by CLI commands that use micro-worktree operations.
|
|
99
99
|
* The pre-push hook checks this env var to allow micro-worktree pushes to main.
|
|
100
100
|
* Valid values are: wu-create, wu-edit, wu-done, wu-delete, wu-claim, wu-block,
|
|
101
|
-
* wu-unblock, initiative-create, initiative-edit, release
|
|
101
|
+
* wu-unblock, initiative-create, initiative-edit, release, lumenflow-upgrade
|
|
102
102
|
*/
|
|
103
103
|
export const LUMENFLOW_WU_TOOL_ENV = 'LUMENFLOW_WU_TOOL';
|
|
104
104
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lumenflow/core",
|
|
3
|
-
"version": "2.18.
|
|
3
|
+
"version": "2.18.2",
|
|
4
4
|
"description": "Core WU lifecycle tools for LumenFlow workflow framework",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"lumenflow",
|
|
@@ -59,9 +59,11 @@
|
|
|
59
59
|
"./test-baseline": "./dist/test-baseline.js",
|
|
60
60
|
"./backlog-sync-validator": "./dist/backlog-sync-validator.js",
|
|
61
61
|
"./cloud-detect": "./dist/cloud-detect.js",
|
|
62
|
+
"./compliance-parser": "./dist/compliance-parser.js",
|
|
62
63
|
"./code-path-validator": "./dist/code-path-validator.js",
|
|
63
64
|
"./code-paths-overlap": "./dist/code-paths-overlap.js",
|
|
64
65
|
"./commands-logger": "./dist/commands-logger.js",
|
|
66
|
+
"./constants/gate-constants": "./dist/constants/gate-constants.js",
|
|
65
67
|
"./context/index": "./dist/context/index.js",
|
|
66
68
|
"./context/location-resolver": "./dist/context/location-resolver.js",
|
|
67
69
|
"./core/worktree-guard": "./dist/core/worktree-guard.js",
|
|
@@ -69,18 +71,22 @@
|
|
|
69
71
|
"./dependency-graph": "./dist/dependency-graph.js",
|
|
70
72
|
"./dependency-validator": "./dist/dependency-validator.js",
|
|
71
73
|
"./docs-path-validator": "./dist/docs-path-validator.js",
|
|
74
|
+
"./domain/orchestration.constants": "./dist/domain/orchestration.constants.js",
|
|
72
75
|
"./gates-agent-mode": "./dist/gates-agent-mode.js",
|
|
73
76
|
"./gates-config": "./dist/gates-config.js",
|
|
77
|
+
"./generate-traceability": "./dist/generate-traceability.js",
|
|
74
78
|
"./git-context-extractor": "./dist/git-context-extractor.js",
|
|
75
79
|
"./git-staged-validator": "./dist/git-staged-validator.js",
|
|
76
80
|
"./incremental-lint": "./dist/incremental-lint.js",
|
|
77
81
|
"./incremental-test": "./dist/incremental-test.js",
|
|
78
82
|
"./invariants-runner": "./dist/invariants-runner.js",
|
|
83
|
+
"./logs-lib": "./dist/logs-lib.js",
|
|
79
84
|
"./lumenflow-home": "./dist/lumenflow-home.js",
|
|
80
85
|
"./manual-test-validator": "./dist/manual-test-validator.js",
|
|
81
86
|
"./micro-worktree": "./dist/micro-worktree.js",
|
|
82
87
|
"./migration-deployer": "./dist/migration-deployer.js",
|
|
83
88
|
"./orchestration-advisory-loader": "./dist/orchestration-advisory-loader.js",
|
|
89
|
+
"./orchestration-di": "./dist/orchestration-di.js",
|
|
84
90
|
"./orchestration-rules": "./dist/orchestration-rules.js",
|
|
85
91
|
"./orphan-detector": "./dist/orphan-detector.js",
|
|
86
92
|
"./path-classifiers": "./dist/path-classifiers.js",
|
|
@@ -92,6 +98,7 @@
|
|
|
92
98
|
"./rollback-utils": "./dist/rollback-utils.js",
|
|
93
99
|
"./schemas/memory-arg-validators": "./dist/schemas/memory-arg-validators.js",
|
|
94
100
|
"./spawn-strategy": "./dist/spawn-strategy.js",
|
|
101
|
+
"./stamp-status-validator": "./dist/stamp-status-validator.js",
|
|
95
102
|
"./stamp-tracking": "./dist/stamp-tracking.js",
|
|
96
103
|
"./stamp-utils": "./dist/stamp-utils.js",
|
|
97
104
|
"./state-cleanup-core": "./dist/state-cleanup-core.js",
|
|
@@ -117,6 +124,7 @@
|
|
|
117
124
|
"./wu-done-paths": "./dist/wu-done-paths.js",
|
|
118
125
|
"./wu-done-pr": "./dist/wu-done-pr.js",
|
|
119
126
|
"./wu-done-ui": "./dist/wu-done-ui.js",
|
|
127
|
+
"./wu-done-messages": "./dist/wu-done-messages.js",
|
|
120
128
|
"./wu-done-validation": "./dist/wu-done-validation.js",
|
|
121
129
|
"./wu-events-cleanup": "./dist/wu-events-cleanup.js",
|
|
122
130
|
"./wu-helpers": "./dist/wu-helpers.js",
|
|
@@ -177,7 +185,7 @@
|
|
|
177
185
|
"vitest": "^4.0.17"
|
|
178
186
|
},
|
|
179
187
|
"peerDependencies": {
|
|
180
|
-
"@lumenflow/memory": "2.18.
|
|
188
|
+
"@lumenflow/memory": "2.18.2"
|
|
181
189
|
},
|
|
182
190
|
"peerDependenciesMeta": {
|
|
183
191
|
"@lumenflow/memory": {
|