mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-10 07:27:57 -05:00
* added npm pkg for sim studio * added cache scope for new pkg * added optional port config, default to 3000 * remove accidental package lock * updated package version * added keywords * acknowledged PR comments
32 lines
583 B
JSON
32 lines
583 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"envMode": "loose",
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"inputs": ["$TURBO_DEFAULT$", ".env*"],
|
|
"outputs": [".next/**", "!.next/cache/**", "packages/simstudio/dist/**"]
|
|
},
|
|
"dev": {
|
|
"persistent": true,
|
|
"cache": false
|
|
},
|
|
"start": {
|
|
"cache": false
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": []
|
|
},
|
|
"format": {
|
|
"outputs": []
|
|
},
|
|
"format:check": {
|
|
"outputs": []
|
|
},
|
|
"lint": {
|
|
"outputs": []
|
|
}
|
|
}
|
|
}
|