1
0
mirror of https://github.com/kkapsner/CanvasBlocker synced 2024-06-01 19:08:06 +02:00
CanvasBlocker/.vscode/tasks.json

133 lines
2.1 KiB
JSON
Raw Normal View History

2017-10-03 15:35:31 +02:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
2018-06-20 23:35:20 +02:00
"label": "eslint",
2017-10-03 15:35:31 +02:00
"type": "shell",
"windows": {
"command": "eslint"
},
"linux": {
"command": "eslint"
},
"osx": {
"command": "eslint"
},
"args": [
"./"
],
2017-10-03 15:35:31 +02:00
"presentation": {
"echo": true,
"reveal": "silent",
"focus": false,
"panel": "shared"
},
"problemMatcher": "$eslint-stylish"
},
{
2018-06-20 23:35:20 +02:00
"label": "run",
"type": "shell",
"windows": {
"command": "web-ext"
},
"linux": {
"command": "web-ext"
},
"osx": {
"command": "web-ext"
},
"args": [
"run",
"-f",
"nightly",
"--url",
"http://canvasblocker.local/test/"
],
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
},
"problemMatcher": []
},
2017-11-07 00:36:44 +01:00
{
2018-06-20 23:35:20 +02:00
"label": "run current",
2017-11-07 00:36:44 +01:00
"type": "shell",
"windows": {
"command": "web-ext"
},
"linux": {
"command": "web-ext"
},
"osx": {
"command": "web-ext"
},
"args": [
"run",
"--url",
"http://canvasblocker.local/test/"
],
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
},
"problemMatcher": []
},
2017-11-07 19:51:25 +01:00
{
2018-06-20 23:35:20 +02:00
"label": "run esr",
2017-11-07 19:51:25 +01:00
"type": "shell",
"windows": {
"command": "web-ext"
},
"linux": {
"command": "web-ext"
},
"osx": {
"command": "web-ext"
},
"args": [
"run",
"-f",
"firefox-esr",
"--url",
"http://canvasblocker.local/test/"
],
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
},
"problemMatcher": []
},
{
2018-06-20 23:35:20 +02:00
"label": "build",
"type": "shell",
"windows": {
"command": "web-ext"
},
"linux": {
"command": "web-ext"
},
"osx": {
"command": "web-ext"
},
"args": [
"build",
"--overwrite-dest"
],
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
},
"problemMatcher": []
2017-10-03 15:35:31 +02:00
}
]
}