toolcraft 0.0.110 → 0.0.112
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/composition.json +2 -2
- package/dist/composition.json +2 -2
- package/dist/mcp.d.ts +1 -0
- package/dist/mcp.js +1 -0
- package/dist/sdk.d.ts +1 -0
- package/dist/sdk.js +1 -0
- package/node_modules/@poe-code/process-runner/dist/docker/build-context.js +2 -3
- package/node_modules/toolcraft-schema/package.json +1 -1
- package/package.json +2 -2
package/composition.json
CHANGED
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
},
|
|
79
79
|
{
|
|
80
80
|
"name": "toolcraft",
|
|
81
|
-
"version": "0.0.
|
|
81
|
+
"version": "0.0.112",
|
|
82
82
|
"license": "MIT"
|
|
83
83
|
},
|
|
84
84
|
{
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
},
|
|
89
89
|
{
|
|
90
90
|
"name": "toolcraft-schema",
|
|
91
|
-
"version": "0.0.
|
|
91
|
+
"version": "0.0.112",
|
|
92
92
|
"license": "MIT"
|
|
93
93
|
}
|
|
94
94
|
]
|
package/dist/composition.json
CHANGED
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
},
|
|
79
79
|
{
|
|
80
80
|
"name": "toolcraft",
|
|
81
|
-
"version": "0.0.
|
|
81
|
+
"version": "0.0.112",
|
|
82
82
|
"license": "MIT"
|
|
83
83
|
},
|
|
84
84
|
{
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
},
|
|
89
89
|
{
|
|
90
90
|
"name": "toolcraft-schema",
|
|
91
|
-
"version": "0.0.
|
|
91
|
+
"version": "0.0.112",
|
|
92
92
|
"license": "MIT"
|
|
93
93
|
}
|
|
94
94
|
]
|
package/dist/mcp.d.ts
CHANGED
package/dist/mcp.js
CHANGED
package/dist/sdk.d.ts
CHANGED
package/dist/sdk.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import "./node-require-shim.js";
|
|
1
2
|
import { ToolcraftBugError, UserError, assertCommandRequirements, resolveCommandSecrets } from "./index.js";
|
|
2
3
|
import { writeErrorReport } from "./error-report.js";
|
|
3
4
|
import { mergeApprovalsGroup } from "./human-in-loop/approvals-commands.js";
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { readdir, readFile } from "node:fs/promises";
|
|
2
|
-
import { createRequire } from "node:module";
|
|
3
2
|
import path from "node:path";
|
|
4
|
-
|
|
5
|
-
const createIgnore =
|
|
3
|
+
import ignoreModule from "ignore";
|
|
4
|
+
const createIgnore = ignoreModule;
|
|
6
5
|
export async function readDockerBuildContextFiles(buildContext) {
|
|
7
6
|
const rootEntries = await readdir(buildContext, { withFileTypes: true });
|
|
8
7
|
const dockerignoreEntry = rootEntries.find((entry) => entry.isFile() && String(entry.name) === ".dockerignore");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "toolcraft",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.112",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -151,7 +151,7 @@
|
|
|
151
151
|
"auth-store"
|
|
152
152
|
],
|
|
153
153
|
"optionalDependencies": {
|
|
154
|
-
"toolcraft-schema": "0.0.
|
|
154
|
+
"toolcraft-schema": "0.0.112",
|
|
155
155
|
"toolcraft-design": "^0.0.2",
|
|
156
156
|
"@poe-code/frontmatter": "*",
|
|
157
157
|
"@poe-code/agent-mcp-config": "*",
|