enigma-bbs/.vscode/tasks.json

26 lines
722 B
JSON
Raw Permalink Normal View History

2023-08-28 00:04:17 +00:00
{
"version": "2.0.0",
"tasks": [
{
"label": "Start Jekyll (ENiGMA½ documentation server)",
"command": "cd docs && bundle exec jekyll serve",
2023-08-28 18:08:54 +00:00
"isBackground": true,
2023-08-28 00:04:17 +00:00
"type": "shell"
},
{
"label": "(re)build Jekyll bundles",
"command": "cd docs && bundle install",
"type": "shell"
},
{
"label": "(re)build node modules",
"command": "/bin/rm -rf node_modules && npm install",
"type": "shell"
},
{
"label": "ENiGMA½ new configuration",
"command": "./oputil.js config new",
"type": "shell"
}
]
}