Skip to content

Commit

Permalink
build: patch vscode definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelcr committed May 2, 2023
1 parent 0e425ff commit 5357078
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 11 deletions.
5 changes: 5 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,11 @@
"console": "integratedTerminal",
"preLaunchTask": "npm: testenv:run",
"postDebugTask": "npm: testenv:stop",
"env": {
"PGHOST": "localhost",
"PGUSER": "postgres",
"PGPASSWORD": "postgres",
},
},
]
}
23 changes: 12 additions & 11 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,19 @@
"type": "shell",
"command": "npm run testenv:run -- -d",
"isBackground": true,
"problemMatcher": [
{
"pattern": [
{ "regexp": ".", "file": 1, "location": 2, "message": 3 }
],
"background": {
"activeOnStart": true,
"beginsPattern": ".",
"endsPattern": "."
}
"problemMatcher": {
"pattern": {
"regexp": ".",
"file": 1,
"location": 2,
"message": 3
},
"background": {
"activeOnStart": true,
"beginsPattern": ".",
"endsPattern": "."
}
]
}
},
{
"label": "npm: testenv:stop",
Expand Down

0 comments on commit 5357078

Please sign in to comment.