@eldrforge/commands-git 0.1.3 → 0.1.5

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.
@@ -1 +1 @@
1
- {"version":3,"file":"commit.d.ts","sourceRoot":"","sources":["../../../src/commands/commit.ts"],"names":[],"mappings":";AAEA,OAAO,eAAe,CAAC;AAGvB,OAAO,EAQH,MAAM,EAYT,MAAM,iBAAiB,CAAC;AAojCzB,eAAO,MAAM,OAAO,GAAU,WAAW,MAAM,KAAG,OAAO,CAAC,MAAM,CAsB/D,CAAC"}
1
+ {"version":3,"file":"commit.d.ts","sourceRoot":"","sources":["../../../src/commands/commit.ts"],"names":[],"mappings":";AAEA,OAAO,eAAe,CAAC;AAGvB,OAAO,EAQH,MAAM,EAYT,MAAM,iBAAiB,CAAC;AA6mCzB,eAAO,MAAM,OAAO,GAAU,WAAW,MAAM,KAAG,OAAO,CAAC,MAAM,CAsB/D,CAAC"}
@@ -0,0 +1,6 @@
1
+ import { Config } from '@eldrforge/core';
2
+ /**
3
+ * Execute pull command
4
+ */
5
+ export declare const execute: (runConfig: Config) => Promise<string>;
6
+ //# sourceMappingURL=pull.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"pull.d.ts","sourceRoot":"","sources":["../../../src/commands/pull.ts"],"names":[],"mappings":";AACA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,EAA8B,MAAM,EAAE,MAAM,iBAAiB,CAAC;AAkjBrE;;GAEG;AACH,eAAO,MAAM,OAAO,GAAU,WAAW,MAAM,KAAG,OAAO,CAAC,MAAM,CAQ/D,CAAC"}
@@ -2,6 +2,7 @@ export { execute as commit } from './commands/commit';
2
2
  export { execute as precommit } from './commands/precommit';
3
3
  export { execute as clean } from './commands/clean';
4
4
  export { execute as review } from './commands/review';
5
+ export { execute as pull } from './commands/pull';
5
6
  export * from './util/precommitOptimizations';
6
7
  export * from './util/performance';
7
8
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,mBAAmB,CAAC;AACtD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,kBAAkB,CAAC;AACpD,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,mBAAmB,CAAC;AAGtD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,oBAAoB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,mBAAmB,CAAC;AACtD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,kBAAkB,CAAC;AACpD,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,mBAAmB,CAAC;AACtD,OAAO,EAAE,OAAO,IAAI,IAAI,EAAE,MAAM,iBAAiB,CAAC;AAGlD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,oBAAoB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eldrforge/commands-git",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "description": "Git workflow commands for kodrdriv",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -38,15 +38,21 @@
38
38
  ],
39
39
  "author": "Tim O'Brien <tobrien@discursive.com>",
40
40
  "license": "Apache-2.0",
41
+ "engines": {
42
+ "node": ">=24.0.0"
43
+ },
41
44
  "dependencies": {
42
- "@eldrforge/core": "^0.1.2",
43
- "@eldrforge/git-tools": "^0.1.18",
44
- "@eldrforge/github-tools": "^0.1.20",
45
- "@eldrforge/ai-service": "^0.1.19",
46
- "@eldrforge/shared": "^0.1.8",
47
- "@riotprompt/riotprompt": "^0.0.10",
45
+ "@anthropic-ai/sdk": "^0.71.2",
46
+ "@eldrforge/ai-service": "^0.1.22",
47
+ "@eldrforge/core": "^0.1.4",
48
+ "@eldrforge/git-tools": "^0.1.22",
49
+ "@eldrforge/github-tools": "^0.1.21",
50
+ "@eldrforge/shared": "^0.1.10",
51
+ "@google/generative-ai": "^0.24.1",
52
+ "@riotprompt/riotprompt": "^0.0.21",
48
53
  "dotenv": "^16.4.7",
49
- "openai": "^4.87.3",
54
+ "openai": "^6.16.0",
55
+ "semver": "^7.7.2",
50
56
  "shell-escape": "^0.2.0"
51
57
  },
52
58
  "devDependencies": {