@lumpcode/core 0.0.15 → 0.0.16

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.
Files changed (34) hide show
  1. package/README.md +7 -1
  2. package/dist/helpers/execBinary/main.d.ts +19 -5
  3. package/dist/helpers/execBinary/main.d.ts.map +1 -1
  4. package/dist/helpers/executeStepsForContextList/main.d.ts +10 -3
  5. package/dist/helpers/executeStepsForContextList/main.d.ts.map +1 -1
  6. package/dist/index.cjs +410 -159
  7. package/dist/index.cjs.map +1 -1
  8. package/dist/index.js +409 -161
  9. package/dist/index.js.map +1 -1
  10. package/dist/testing/processTreeChild.d.cts +2 -0
  11. package/dist/testing/processTreeChild.d.cts.map +1 -0
  12. package/dist/testing/processTreeTestHelpers.d.ts +12 -0
  13. package/dist/testing/processTreeTestHelpers.d.ts.map +1 -0
  14. package/dist/testing/sigtermIgnorantTreeChild.d.cts +2 -0
  15. package/dist/testing/sigtermIgnorantTreeChild.d.cts.map +1 -0
  16. package/dist/types/ExecuteStepsFailureData.d.ts +6 -0
  17. package/dist/types/ExecuteStepsFailureData.d.ts.map +1 -0
  18. package/dist/types/ExecuteStepsFailureReason.d.ts +2 -0
  19. package/dist/types/ExecuteStepsFailureReason.d.ts.map +1 -0
  20. package/dist/types/index.d.ts +2 -0
  21. package/dist/types/index.d.ts.map +1 -1
  22. package/dist/usages/runLump/main.d.ts +4 -4
  23. package/dist/usages/runLump/main.d.ts.map +1 -1
  24. package/dist/utils/index.d.ts +3 -0
  25. package/dist/utils/index.d.ts.map +1 -1
  26. package/dist/utils/isProcessAlive/index.d.ts +2 -1
  27. package/dist/utils/isProcessAlive/index.d.ts.map +1 -1
  28. package/dist/utils/killProcessTree/index.d.ts +2 -0
  29. package/dist/utils/killProcessTree/index.d.ts.map +1 -0
  30. package/dist/utils/killProcessTree/main.d.ts +11 -0
  31. package/dist/utils/killProcessTree/main.d.ts.map +1 -0
  32. package/dist/utils/nodeErrnoCode/index.d.ts +1 -1
  33. package/dist/utils/nodeErrnoCode/index.d.ts.map +1 -1
  34. package/package.json +1 -1
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=processTreeChild.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"processTreeChild.d.cts","sourceRoot":"","sources":["../../src/testing/processTreeChild.cjs"],"names":[],"mappings":""}
@@ -0,0 +1,12 @@
1
+ /** Signal-0 probe: true when the pid is still running. */
2
+ export declare function probeAlive(pid: number): boolean;
3
+ /** Poll until `process.kill(pid, 0)` fails, or throw after `timeoutMs`. */
4
+ export declare function waitForPidGone(pid: number, timeoutMs?: number): Promise<void>;
5
+ /**
6
+ * Poll until a ready file contains a non-empty `pids` array.
7
+ * Ready-file contract: JSON `{ "pids": number[] }`.
8
+ */
9
+ export declare function waitForReadyFile(readyFile: string, timeoutMs?: number): Promise<{
10
+ pids: number[];
11
+ }>;
12
+ //# sourceMappingURL=processTreeTestHelpers.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"processTreeTestHelpers.d.ts","sourceRoot":"","sources":["../../src/testing/processTreeTestHelpers.ts"],"names":[],"mappings":"AAEA,0DAA0D;AAC1D,wBAAgB,UAAU,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAO/C;AAMD,2EAA2E;AAC3E,wBAAsB,cAAc,CAAC,GAAG,EAAE,MAAM,EAAE,SAAS,SAAO,GAAG,OAAO,CAAC,IAAI,CAAC,CAOjF;AAED;;;GAGG;AACH,wBAAsB,gBAAgB,CAClC,SAAS,EAAE,MAAM,EACjB,SAAS,SAAO,GACjB,OAAO,CAAC;IAAE,IAAI,EAAE,MAAM,EAAE,CAAA;CAAE,CAAC,CAe7B"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=sigtermIgnorantTreeChild.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sigtermIgnorantTreeChild.d.cts","sourceRoot":"","sources":["../../src/testing/sigtermIgnorantTreeChild.cjs"],"names":[],"mappings":""}
@@ -0,0 +1,6 @@
1
+ import type { ExecuteStepsFailureReason } from './ExecuteStepsFailureReason';
2
+ export type ExecuteStepsFailureData = {
3
+ message: string;
4
+ reason?: ExecuteStepsFailureReason;
5
+ };
6
+ //# sourceMappingURL=ExecuteStepsFailureData.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ExecuteStepsFailureData.d.ts","sourceRoot":"","sources":["../../src/types/ExecuteStepsFailureData.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,6BAA6B,CAAC;AAE7E,MAAM,MAAM,uBAAuB,GAAG;IAClC,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,yBAAyB,CAAC;CACtC,CAAC"}
@@ -0,0 +1,2 @@
1
+ export type ExecuteStepsFailureReason = 'stepWalkFailed' | 'workspaceTeardownFailed';
2
+ //# sourceMappingURL=ExecuteStepsFailureReason.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ExecuteStepsFailureReason.d.ts","sourceRoot":"","sources":["../../src/types/ExecuteStepsFailureReason.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,yBAAyB,GAC/B,gBAAgB,GAChB,yBAAyB,CAAC"}
@@ -29,5 +29,7 @@ export * from './TeardownFn';
29
29
  export * from './TeardownWorkspaceFn';
30
30
  export * from './ExtractSuccess';
31
31
  export * from './ExecFailureData';
32
+ export * from './ExecuteStepsFailureData';
33
+ export * from './ExecuteStepsFailureReason';
32
34
  export * from './AsyncFnSuccess';
33
35
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC;AAC3B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,aAAa,CAAC;AAC5B,cAAc,WAAW,CAAC;AAC1B,cAAc,eAAe,CAAC;AAC9B,cAAc,mBAAmB,CAAC;AAClC,cAAc,iBAAiB,CAAC;AAChC,cAAc,WAAW,CAAC;AAC1B,cAAc,oBAAoB,CAAC;AACnC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC;AAClC,cAAc,sBAAsB,CAAC;AACrC,cAAc,sBAAsB,CAAC;AACrC,cAAc,oBAAoB,CAAC;AACnC,cAAc,UAAU,CAAC;AACzB,cAAc,iBAAiB,CAAC;AAChC,cAAc,SAAS,CAAC;AACxB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,cAAc,qBAAqB,CAAC;AACpC,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC;AACxB,cAAc,iBAAiB,CAAC;AAChC,cAAc,WAAW,CAAC;AAC1B,cAAc,oBAAoB,CAAC;AACnC,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,uBAAuB,CAAC;AACtC,cAAc,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC;AAC3B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,aAAa,CAAC;AAC5B,cAAc,WAAW,CAAC;AAC1B,cAAc,eAAe,CAAC;AAC9B,cAAc,mBAAmB,CAAC;AAClC,cAAc,iBAAiB,CAAC;AAChC,cAAc,WAAW,CAAC;AAC1B,cAAc,oBAAoB,CAAC;AACnC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC;AAClC,cAAc,sBAAsB,CAAC;AACrC,cAAc,sBAAsB,CAAC;AACrC,cAAc,oBAAoB,CAAC;AACnC,cAAc,UAAU,CAAC;AACzB,cAAc,iBAAiB,CAAC;AAChC,cAAc,SAAS,CAAC;AACxB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,cAAc,qBAAqB,CAAC;AACpC,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC;AACxB,cAAc,iBAAiB,CAAC;AAChC,cAAc,WAAW,CAAC;AAC1B,cAAc,oBAAoB,CAAC;AACnC,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,uBAAuB,CAAC;AACtC,cAAc,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC;AAClC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,kBAAkB,CAAC"}
@@ -1,8 +1,6 @@
1
- import { Success, Failure, BranchFn, GetContextListFn, SetupFn, LumpVariables, StepVariables, TeardownFn, Steps, GitAddCommandFn, GitCommitCommandFn, GitCommitMessageFn, GitPushCommandFn, SetupWorkspaceFn, TeardownWorkspaceFn, ExtractSuccess, Context, Logger } from "../../types";
1
+ import { Success, Failure, BranchFn, GetContextListFn, SetupFn, LumpVariables, StepVariables, TeardownFn, Steps, GitAddCommandFn, GitCommitCommandFn, GitCommitMessageFn, GitPushCommandFn, SetupWorkspaceFn, TeardownWorkspaceFn, ExtractSuccess, Context, Logger, ExecuteStepsFailureData } from "../../types";
2
2
  import { ExecuteStepsForContextListResult } from "../../helpers";
3
- export declare function runLump<V extends LumpVariables = LumpVariables, SV extends StepVariables = StepVariables>(input: RunLumpInput<V, SV>): Promise<Success<RunLumpOutput> | Failure<{
4
- message: string;
5
- }>>;
3
+ export declare function runLump<V extends LumpVariables = LumpVariables, SV extends StepVariables = StepVariables>(input: RunLumpInput<V, SV>): Promise<Success<RunLumpOutput> | Failure<ExecuteStepsFailureData>>;
6
4
  export interface RunLumpInput<V extends LumpVariables = LumpVariables, SV extends StepVariables = StepVariables> {
7
5
  projectRoot: string;
8
6
  baseBranch: string;
@@ -21,6 +19,8 @@ export interface RunLumpInput<V extends LumpVariables = LumpVariables, SV extend
21
19
  teardownWorkspaceFn?: TeardownWorkspaceFn;
22
20
  logger?: Logger;
23
21
  getKeepHistoryFilePathFn?: (context: Context) => string | undefined;
22
+ /** When aborted, in-flight commands are killed and the step walk stops (ignores continueOnError). */
23
+ signal?: AbortSignal;
24
24
  }
25
25
  export interface RunLumpOutput {
26
26
  result: ExtractSuccess<ExecuteStepsForContextListResult>;
@@ -1 +1 @@
1
- {"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../../src/usages/runLump/main.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,gBAAgB,EAAE,OAAO,EAAE,aAAa,EAAE,aAAa,EAAE,UAAU,EAAE,KAAK,EAAE,eAAe,EAAE,kBAAkB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,mBAAmB,EAAE,cAAc,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AAExR,OAAO,EAGH,gCAAgC,EACnC,MAAM,eAAe,CAAC;AAGvB,wBAAsB,OAAO,CACzB,CAAC,SAAS,aAAa,GAAG,aAAa,EACvC,EAAE,SAAS,aAAa,GAAG,aAAa,EAC1C,KAAK,EAAE,YAAY,CAAC,CAAC,EAAE,EAAE,CAAC,GAAG,OAAO,CACtC,OAAO,CAAC,aAAa,CAAC,GACtB,OAAO,CAAC;IAAE,OAAO,EAAE,MAAM,CAAC;CAAE,CAAC,CAC5B,CA4FA;AAED,MAAM,WAAW,YAAY,CACzB,CAAC,SAAS,aAAa,GAAG,aAAa,EACvC,EAAE,SAAS,aAAa,GAAG,aAAa;IAExC,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC;IACtB,gBAAgB,EAAE,gBAAgB,CAAC,CAAC,CAAC,CAAC;IACtC,KAAK,EAAE,KAAK,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;IACpB,yBAAyB,CAAC,EAAE,MAAM,CAAC;IACnC,aAAa,CAAC,EAAE,CAAC,CAAC;IAClB,OAAO,CAAC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC;IACrB,UAAU,CAAC,EAAE,UAAU,CAAC,CAAC,CAAC,CAAC;IAC3B,eAAe,CAAC,EAAE,eAAe,CAAC;IAClC,kBAAkB,CAAC,EAAE,kBAAkB,CAAC;IACxC,kBAAkB,CAAC,EAAE,kBAAkB,CAAC,CAAC,CAAC,CAAC;IAC3C,gBAAgB,CAAC,EAAE,gBAAgB,CAAC;IACpC,gBAAgB,CAAC,EAAE,gBAAgB,CAAC;IACpC,mBAAmB,CAAC,EAAE,mBAAmB,CAAC;IAC1C,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,wBAAwB,CAAC,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,MAAM,GAAG,SAAS,CAAC;CACvE;AAED,MAAM,WAAW,aAAa;IAC1B,MAAM,EAAE,cAAc,CAAC,gCAAgC,CAAC,CAAC;CAC5D"}
1
+ {"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../../src/usages/runLump/main.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,gBAAgB,EAAE,OAAO,EAAE,aAAa,EAAE,aAAa,EAAE,UAAU,EAAE,KAAK,EAAE,eAAe,EAAE,kBAAkB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,mBAAmB,EAAE,cAAc,EAAE,OAAO,EAAE,MAAM,EAAE,uBAAuB,EAAE,MAAM,aAAa,CAAC;AAEjT,OAAO,EAGH,gCAAgC,EACnC,MAAM,eAAe,CAAC;AAGvB,wBAAsB,OAAO,CACzB,CAAC,SAAS,aAAa,GAAG,aAAa,EACvC,EAAE,SAAS,aAAa,GAAG,aAAa,EAC1C,KAAK,EAAE,YAAY,CAAC,CAAC,EAAE,EAAE,CAAC,GAAG,OAAO,CACtC,OAAO,CAAC,aAAa,CAAC,GACtB,OAAO,CAAC,uBAAuB,CAAC,CAC/B,CA8FA;AAED,MAAM,WAAW,YAAY,CACzB,CAAC,SAAS,aAAa,GAAG,aAAa,EACvC,EAAE,SAAS,aAAa,GAAG,aAAa;IAExC,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC;IACtB,gBAAgB,EAAE,gBAAgB,CAAC,CAAC,CAAC,CAAC;IACtC,KAAK,EAAE,KAAK,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;IACpB,yBAAyB,CAAC,EAAE,MAAM,CAAC;IACnC,aAAa,CAAC,EAAE,CAAC,CAAC;IAClB,OAAO,CAAC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC;IACrB,UAAU,CAAC,EAAE,UAAU,CAAC,CAAC,CAAC,CAAC;IAC3B,eAAe,CAAC,EAAE,eAAe,CAAC;IAClC,kBAAkB,CAAC,EAAE,kBAAkB,CAAC;IACxC,kBAAkB,CAAC,EAAE,kBAAkB,CAAC,CAAC,CAAC,CAAC;IAC3C,gBAAgB,CAAC,EAAE,gBAAgB,CAAC;IACpC,gBAAgB,CAAC,EAAE,gBAAgB,CAAC;IACpC,mBAAmB,CAAC,EAAE,mBAAmB,CAAC;IAC1C,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,wBAAwB,CAAC,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,MAAM,GAAG,SAAS,CAAC;IACpE,qGAAqG;IACrG,MAAM,CAAC,EAAE,WAAW,CAAC;CACxB;AAED,MAAM,WAAW,aAAa;IAC1B,MAAM,EAAE,cAAc,CAAC,gCAAgC,CAAC,CAAC;CAC5D"}
@@ -8,4 +8,7 @@ export * from './formatExecFailureMessage';
8
8
  export * from './historyFile';
9
9
  export * from './pathExists';
10
10
  export * from './parseGitLogHashSubjectLines';
11
+ export * from './nodeErrnoCode';
12
+ export * from './isProcessAlive';
13
+ export * from './killProcessTree';
11
14
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,OAAO,CAAC;AACtB,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,oBAAoB,CAAC;AACnC,cAAc,0BAA0B,CAAC;AACzC,cAAc,uBAAuB,CAAC;AACtC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAC7B,cAAc,+BAA+B,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,OAAO,CAAC;AACtB,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,oBAAoB,CAAC;AACnC,cAAc,0BAA0B,CAAC;AACzC,cAAc,uBAAuB,CAAC;AACtC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAC7B,cAAc,+BAA+B,CAAC;AAC9C,cAAc,iBAAiB,CAAC;AAChC,cAAc,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC"}
@@ -1,2 +1,3 @@
1
- export * from './main';
1
+ export { isProcessAlive } from './main';
2
+ export type { IsProcessAliveOptions } from './main';
2
3
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/utils/isProcessAlive/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/utils/isProcessAlive/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,QAAQ,CAAC;AACxC,YAAY,EAAE,qBAAqB,EAAE,MAAM,QAAQ,CAAC"}
@@ -0,0 +1,2 @@
1
+ export { killProcessTree } from './main';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/utils/killProcessTree/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,QAAQ,CAAC"}
@@ -0,0 +1,11 @@
1
+ import type { Failure, Success } from '../../types';
2
+ /**
3
+ * Kill a process and its descendants.
4
+ * `graceMs` default 0 → immediate SIGKILL / taskkill /T /F.
5
+ * When `graceMs > 0` (Unix), SIGTERM first, then SIGKILL after the grace window.
6
+ */
7
+ export declare function killProcessTree(input: {
8
+ pid: number;
9
+ graceMs?: number;
10
+ }): Promise<Success<void> | Failure<string>>;
11
+ //# sourceMappingURL=main.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../../src/utils/killProcessTree/main.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,OAAO,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AA0GpD;;;;GAIG;AACH,wBAAsB,eAAe,CAAC,KAAK,EAAE;IACzC,GAAG,EAAE,MAAM,CAAC;IACZ,OAAO,CAAC,EAAE,MAAM,CAAC;CACpB,GAAG,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC,CAmB3C"}
@@ -1,2 +1,2 @@
1
- export * from './main';
1
+ export { nodeErrnoCode } from './main';
2
2
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/utils/nodeErrnoCode/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/utils/nodeErrnoCode/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,QAAQ,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lumpcode/core",
3
- "version": "0.0.15",
3
+ "version": "0.0.16",
4
4
  "description": "Core engine for Lumpcode agent loops — runLump orchestrates prompts across contexts with git-tracked progress",
5
5
  "keywords": [
6
6
  "lumpcode",