Files
codingame/code_royal/.vscode/tasks.json
weiss 3e8a95a6b1 - wood 1
- avoid
- build archers and knights
2020-04-10 05:24:09 +02:00

28 lines
801 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build_purescript",
"type": "shell",
"command": "spago bundle-app",
"presentation": {
"echo": true,
"focus": true,
"reveal": "silent"
},
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
},
{
"label": "build_purescript_old",
"type": "shell",
"command": "spago bundle-app && uglifyjs index.js --compress --mangle --output index.js",
"group": "build"
}
]
}