fix(tooling): stop api crashing during seed (#65969)

This commit is contained in:
Oliver Eyton-Williams
2026-02-20 04:56:04 +01:00
committed by GitHub
parent 303bdffc7a
commit 43ba115506
+5 -3
View File
@@ -10,12 +10,14 @@
"pnpm": ">=10"
},
"scripts": {
"build": "tsdown --log-level warn --no-clean --format cjs --format esm",
"clean": "rm -rf dist",
"develop": "tsdown --log-level warn --no-clean --watch src --format cjs --format esm",
"lint": "eslint --max-warnings 0",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"type-check": "tsc --noEmit",
"build": "tsdown --format cjs --format esm",
"lint": "eslint --max-warnings 0"
"type-check": "tsc --noEmit"
},
"type": "module",
"exports": {