Refactor build script order in package.json for improved execution flow

This commit is contained in:
Matiss Janis Aboltins
2026-03-10 21:51:00 +00:00
parent c307a07867
commit 591da6b3c1

View File

@@ -10,7 +10,7 @@
"main": "dist/index.js",
"types": "@types/index.d.ts",
"scripts": {
"build": "vite build && yarn workspace loot-core exec tsc && node scripts/inline-loot-core-types.mjs",
"build": "yarn workspace loot-core exec tsc && vite build && node scripts/inline-loot-core-types.mjs",
"test": "vitest --run",
"typecheck": "tsc --noEmit && tsc-strict"
},