mirror of
https://github.com/markmanx/isoflow.git
synced 2025-01-31 15:12:31 +00:00
41 lines
No EOL
796 B
JSON
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
|
|
}
|
|
}
|
|
} |