Skip to content

Instantly share code, notes, and snippets.

@keirbowden
Last active July 13, 2019 07:22
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save keirbowden/eccad240009f5e99c34c4caebbd7347d to your computer and use it in GitHub Desktop.
Save keirbowden/eccad240009f5e99c34c4caebbd7347d to your computer and use it in GitHub Desktop.
VSCode task file to execute
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "node",
"args": [
"deploy.js"
],
"problemMatcher": [ {
"owner": "BB-apex",
"fileLocation": [
"relative",
"${workspaceFolder}"
],
"pattern": {
"regexp": "^Error: (.*): Line (\\d+), col (\\d+) : (.*)$",
"file": 1,
"line": 2,
"column": 3,
"message": 4
}
},
{
"owner": "BB-lc",
"fileLocation": [
"relative",
"${workspaceFolder}"
],
"pattern": [ {
"regexp": "^Error: (.*): Line undefined, col undefined : (.*): ParseError at \\[row,col\\]:\\[(\\d+),(\\d+)]$",
"file": 1,
"line": 3,
"column": 4,
},
{
"regexp":"^(.*$)",
"message": 1
} ]
}],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment