Initial files for MakeCode project
This commit is contained in:
parent
7778211460
commit
726a7fc973
26 changed files with 59021 additions and 0 deletions
30
.vscode/tasks.json
vendored
Normal file
30
.vscode/tasks.json
vendored
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
|
||||
// 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" ]
|
||||
}]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue