Pullfrog [va4ge] #117
Annotations
2 errors and 1 warning
|
pullfrog
output: > @ dev /home/runner/work/zod/zod
> tsx --conditions @zod/source /tmp/repro.ts
ELIFECYCLE Command failed with exit code 1.
node:internal/modules/cjs/loader:1207
const err = new Error(message);
^
Error: Cannot find module './packages/zod/src/v4/index.js'
Require stack:
- /tmp/repro.ts
at Module._resolveFilename (node:internal/modules/cjs/loader:1207:15)
at nextResolveSimple (/home/runner/work/zod/zod/node_modules/.pnpm/tsx@4.19.3/node_modules/tsx/dist/register-DCnOAxY2.cjs:3:942)
at /home/runner/work/zod/zod/node_modules/.pnpm/tsx@4.19.3/node_modules/tsx/dist/register-DCnOAxY2.cjs:2:2550
at /home/runner/work/zod/zod/node_modules/.pnpm/tsx@4.19.3/node_modules/tsx/dist/register-DCnOAxY2.cjs:2:1624
at resolveTsPaths (/home/runner/work/zod/zod/node_modules/.pnpm/tsx@4.19.3/node_modules/tsx/dist/register-DCnOAxY2.cjs:3:760)
at /home/runner/work/zod/zod/node_modules/.pnpm/tsx@4.19.3/node_modules/tsx/dist/register-DCnOAxY2.cjs:3:1038
at m._resolveFilename (file:///home/runner/work/zod/zod/node_modules/.pnpm/tsx@4.19.3/node_modules/tsx/dist/register-RyGUjI6j.mjs:1:789)
at Module._load (node:internal/modules/cjs/loader:1038:27)
at Module.require (node:internal/modules/cjs/loader:1289:19)
at require (node:internal/modules/helpers:182:18) {
code: 'MODULE_NOT_FOUND',
requireStack: [ '/tmp/repro.ts' ]
}
Node.js v20.20.0
|
|
pullfrog
bash command failed with exit code 1: cd /home/runner/work/zod/zod && cat > /tmp/repro.ts << 'EOF'
import * as z from "./packages/zod/src/v4/index.js";
const schema = z.object({
id: z.number().finite()
}).required({ id: true });
const result = schema.safeParse({ id: Infinity });
console.log("Success:", result.success);
if (!result.success) {
console.log("Error:", JSON.stringify(result.error.issues, null, 2));
}
EOF
pnpm dev /tmp/repro.ts
|
|
pullfrog
Tool error: File content (31228 tokens) exceeds maximum allowed tokens (25000). Please use offset and limit parameters to read specific portions of the file, or use the GrepTool to search for specific content.
|