CanvasBlocker/.vscode/tasks.json

214 lines
3.4 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": [
2019-11-30 02:05:37 +01:00
"./",
"--ext",
".js,.html,.php"
],
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": []
},
2019-02-10 12:59:00 +01:00
{
"label": "run beta",
"type": "shell",
"windows": {
"command": "web-ext"
},
"linux": {
"command": "web-ext"
},
"osx": {
"command": "web-ext"
},
"args": [
"run",
"-f",
"firefox-beta",
"--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",
2018-10-01 09:04:24 +02:00
"--overwrite-dest",
"--ignore-files",
"test",
"--ignore-files",
2019-11-30 15:34:42 +01:00
"versions",
"--ignore-files",
"package*"
],
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
},
"problemMatcher": []
2018-10-13 12:30:49 +02:00
},
2019-05-31 17:28:51 +02:00
{
"label": "web-ext lint",
"type": "shell",
"windows": {
"command": "web-ext"
},
"linux": {
"command": "web-ext"
},
"osx": {
"command": "web-ext"
},
"args": [
"lint",
"--ignore-files",
"test"
],
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
},
"problemMatcher": []
},
2018-10-13 12:30:49 +02:00
{
"label": "open git UI",
"type": "shell",
"windows": {
"command": "git-cola"
},
"linux": {
"command": "git-cola"
},
"osx": {
"command": "git-cola"
},
"args": [],
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
},
"problemMatcher": []
2017-10-03 15:35:31 +02:00
}
]
}