isoflow/.codesandbox/tasks.json

41 lines
796 B
JSON
Raw Normal View History

2023-07-29 09:04:13 +00:00
{
"setupTasks": [
{
2023-08-25 20:31:26 +00:00
"name": "Install app dependencies",
2023-07-29 09:04:13 +00:00
"command": "npm i"
2023-08-25 20:31:26 +00:00
},
{
"name": "Install documentation dependencies",
"command": "cd docs && npm i"
},
{
"name": "Build Docs",
"command": "cd docs && npm run build"
2023-07-29 09:04:13 +00:00
}
],
"tasks": {
"start": {
2023-08-25 20:31:26 +00:00
"name": "Isoflow",
2023-07-29 09:04:13 +00:00
"command": "npm run start",
"runAtStart": true,
"preview": {
"port": 3000,
"prLink": "direct"
}
},
2023-08-25 20:31:26 +00:00
"docs":{
"name":"Docs",
2023-10-04 22:18:46 +00:00
"command":"npm run docs:build && npm run docs:start",
"runAtStart": true,
2023-08-25 20:40:53 +00:00
"preview": {
"port": 3002,
"prLink": "direct"
}
2023-08-25 20:31:26 +00:00
},
2023-07-29 09:04:13 +00:00
"test": {
2023-08-25 20:31:26 +00:00
"name": "Tests",
2023-07-29 09:04:13 +00:00
"command": "npm run test",
"runAtStart": false
}
}
}