mirror of
https://github.com/foambubble/foam.git
synced 2026-01-09 14:08:13 -05:00
* Using nodemon for watch task * Added documentation and generator pattern to support getting some data from multiple sources * asAbsoluteUrl can now take URI or string * Tweaked daily note computation * Replacing URI.withFragment with generic URI.with * Removed URI.file from non-testing code * fixed asAbsoluteUri * Various tweaks and fixes * Fixed create-note command
53 lines
1.1 KiB
JSON
53 lines
1.1 KiB
JSON
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "watch: foam-vscode",
|
|
"type": "npm",
|
|
"script": "watch",
|
|
"problemMatcher": {
|
|
"owner": "typescript",
|
|
"fileLocation": ["relative", "${workspaceFolder}"],
|
|
"pattern": [
|
|
{
|
|
"regexp": "^(.*?)\\((\\d+),(\\d+)\\):\\s+(.*)$",
|
|
"file": 1,
|
|
"line": 2,
|
|
"column": 3,
|
|
"message": 4
|
|
}
|
|
],
|
|
"background": {
|
|
"activeOnStart": true,
|
|
"beginsPattern": {
|
|
"regexp": ".*"
|
|
},
|
|
"endsPattern": {
|
|
"regexp": ".*"
|
|
}
|
|
}
|
|
},
|
|
"isBackground": true,
|
|
"presentation": {
|
|
"reveal": "always"
|
|
},
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
},
|
|
{
|
|
"label": "test: all packages",
|
|
"type": "npm",
|
|
"script": "test",
|
|
"problemMatcher": [],
|
|
"group": {
|
|
"kind": "test",
|
|
"isDefault": true
|
|
}
|
|
}
|
|
]
|
|
}
|