You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
756 B
30 lines
756 B
|
|
// A task runner that calls the MakeCode (PXT) compiler |
|
{ |
|
"version": "2.0.0", |
|
"tasks": [{ |
|
"label": "pxt deploy", |
|
"type": "shell", |
|
"command": "pxt deploy --local", |
|
"group": "build", |
|
"problemMatcher": [ "$tsc" ] |
|
}, { |
|
"label": "pxt build", |
|
"type": "shell", |
|
"command": "pxt build --local", |
|
"group": "build", |
|
"problemMatcher": [ "$tsc" ] |
|
}, { |
|
"label": "pxt install", |
|
"type": "shell", |
|
"command": "pxt install", |
|
"group": "build", |
|
"problemMatcher": [ "$tsc" ] |
|
}, { |
|
"label": "pxt clean", |
|
"type": "shell", |
|
"command": "pxt clean", |
|
"group": "test", |
|
"problemMatcher": [ "$tsc" ] |
|
}] |
|
}
|
|
|