@lumenflow/core 2.18.2 → 2.18.3
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-shared.d.ts +134 -0
- package/dist/micro-worktree-shared.d.ts.map +1 -0
- package/dist/micro-worktree-shared.js +350 -0
- package/dist/micro-worktree-shared.js.map +1 -0
- package/dist/micro-worktree.d.ts +4 -273
- package/dist/micro-worktree.d.ts.map +1 -1
- package/dist/micro-worktree.js +2 -540
- package/dist/micro-worktree.js.map +1 -1
- package/package.json +6 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lumenflow/core",
|
|
3
|
-
"version": "2.18.
|
|
3
|
+
"version": "2.18.3",
|
|
4
4
|
"description": "Core WU lifecycle tools for LumenFlow workflow framework",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"lumenflow",
|
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
"type": "module",
|
|
24
24
|
"exports": {
|
|
25
25
|
".": "./dist/index.js",
|
|
26
|
+
"./active-wu-detector": "./dist/active-wu-detector.js",
|
|
26
27
|
"./arg-parser": "./dist/arg-parser.js",
|
|
27
28
|
"./date-utils": "./dist/date-utils.js",
|
|
28
29
|
"./error-handler": "./dist/error-handler.js",
|
|
@@ -64,6 +65,7 @@
|
|
|
64
65
|
"./code-paths-overlap": "./dist/code-paths-overlap.js",
|
|
65
66
|
"./commands-logger": "./dist/commands-logger.js",
|
|
66
67
|
"./constants/gate-constants": "./dist/constants/gate-constants.js",
|
|
68
|
+
"./constants/linter-constants": "./dist/constants/linter-constants.js",
|
|
67
69
|
"./context/index": "./dist/context/index.js",
|
|
68
70
|
"./context/location-resolver": "./dist/context/location-resolver.js",
|
|
69
71
|
"./core/worktree-guard": "./dist/core/worktree-guard.js",
|
|
@@ -75,6 +77,7 @@
|
|
|
75
77
|
"./gates-agent-mode": "./dist/gates-agent-mode.js",
|
|
76
78
|
"./gates-config": "./dist/gates-config.js",
|
|
77
79
|
"./generate-traceability": "./dist/generate-traceability.js",
|
|
80
|
+
"./hardcoded-strings": "./dist/hardcoded-strings.js",
|
|
78
81
|
"./git-context-extractor": "./dist/git-context-extractor.js",
|
|
79
82
|
"./git-staged-validator": "./dist/git-staged-validator.js",
|
|
80
83
|
"./incremental-lint": "./dist/incremental-lint.js",
|
|
@@ -91,6 +94,7 @@
|
|
|
91
94
|
"./orphan-detector": "./dist/orphan-detector.js",
|
|
92
95
|
"./path-classifiers": "./dist/path-classifiers.js",
|
|
93
96
|
"./process-detector": "./dist/process-detector.js",
|
|
97
|
+
"./prompt-linter": "./dist/prompt-linter.js",
|
|
94
98
|
"./rebase-artifact-cleanup": "./dist/rebase-artifact-cleanup.js",
|
|
95
99
|
"./recovery/recovery-analyzer": "./dist/recovery/recovery-analyzer.js",
|
|
96
100
|
"./resolve-policy": "./dist/resolve-policy.js",
|
|
@@ -185,7 +189,7 @@
|
|
|
185
189
|
"vitest": "^4.0.17"
|
|
186
190
|
},
|
|
187
191
|
"peerDependencies": {
|
|
188
|
-
"@lumenflow/memory": "2.18.
|
|
192
|
+
"@lumenflow/memory": "2.18.3"
|
|
189
193
|
},
|
|
190
194
|
"peerDependenciesMeta": {
|
|
191
195
|
"@lumenflow/memory": {
|