isoflow/.codesandbox/tasks.json
2023-10-04 23:18:46 +01:00

41 lines
No EOL
796 B
JSON

{
"setupTasks": [
{
"name": "Install app dependencies",
"command": "npm i"
},
{
"name": "Install documentation dependencies",
"command": "cd docs && npm i"
},
{
"name": "Build Docs",
"command": "cd docs && npm run build"
}
],
"tasks": {
"start": {
"name": "Isoflow",
"command": "npm run start",
"runAtStart": true,
"preview": {
"port": 3000,
"prLink": "direct"
}
},
"docs":{
"name":"Docs",
"command":"npm run docs:build && npm run docs:start",
"runAtStart": true,
"preview": {
"port": 3002,
"prLink": "direct"
}
},
"test": {
"name": "Tests",
"command": "npm run test",
"runAtStart": false
}
}
}