mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-04-22 06:17:21 +00:00

- From now on, NSFW service disposes after last reference is removed. No more 10sec delay. - Moved the temp workspace deletion to a startup task. - Can set initial task for the window from electron-main. - Removed the `browser-app`. Closes #39 Signed-off-by: Akos Kitta <a.kitta@arduino.cc>
47 lines
1.1 KiB
JSON
47 lines
1.1 KiB
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Arduino IDE - Rebuild Electron App",
|
|
"type": "shell",
|
|
"command": "yarn rebuild:browser && yarn rebuild:electron",
|
|
"group": "build",
|
|
"presentation": {
|
|
"reveal": "always",
|
|
"panel": "new",
|
|
"clear": false
|
|
}
|
|
},
|
|
{
|
|
"label": "Arduino IDE - Watch IDE Extension",
|
|
"type": "shell",
|
|
"command": "yarn --cwd ./arduino-ide-extension watch",
|
|
"group": "build",
|
|
"presentation": {
|
|
"reveal": "always",
|
|
"panel": "new",
|
|
"clear": false
|
|
}
|
|
},
|
|
{
|
|
"label": "Arduino IDE - Watch Electron App",
|
|
"type": "shell",
|
|
"command": "yarn --cwd ./electron-app watch",
|
|
"group": "build",
|
|
"presentation": {
|
|
"reveal": "always",
|
|
"panel": "new",
|
|
"clear": false
|
|
}
|
|
},
|
|
{
|
|
"label": "Arduino IDE - Watch All [Electron]",
|
|
"type": "shell",
|
|
"dependsOn": [
|
|
"Arduino IDE - Watch IDE Extension",
|
|
"Arduino IDE - Watch Electron App"
|
|
]
|
|
}
|
|
]
|
|
}
|