- Changed build script in packages/logic/package.json to use tsdown instead of tsc. - Updated dev script in packages/logic/package.json to use tsdown with watch mode. - Added tsdown as a devDependency in packages/logic/package.json. - Updated pnpm-lock.yaml to include tsdown and its dependencies across various apps. - Created a new tsdown.config.ts file to define build configuration for the workspace.
20 lines
574 B
JSON
20 lines
574 B
JSON
{
|
|
"name": "@sammo-ts/game-engine",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsdown -c ../../tsdown.config.ts -F @sammo-ts/game-engine",
|
|
"dev": "tsdown -c ../../tsdown.config.ts -F @sammo-ts/game-engine --watch",
|
|
"lint": "node -e \"console.log('lint not configured')\"",
|
|
"test": "vitest run --config vitest.config.ts"
|
|
},
|
|
"dependencies": {
|
|
"@sammo-ts/common": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"tsdown": "^0.18.3",
|
|
"vitest": "^4.0.16"
|
|
}
|
|
}
|