forked from yuzutech/kroki
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): bump puppeteer and pino in diagrams.net (yuzutech#1794)
- Loading branch information
1 parent
5b0b586
commit 1a257b4
Showing
3 changed files
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Launch Program", | ||
"skipFiles": [ | ||
"<node_internals>/**" | ||
], | ||
"program": "${workspaceFolder}/src/index.js", | ||
"env": { | ||
"KROKI_SAFE_MODE":"unsafe", | ||
"KROKI_DRAWIO_PORT":"9000" | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"triggerTaskOnSave.tasks": { | ||
"lint": [ | ||
"src/*.js" | ||
], | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "lint", | ||
"type": "shell", | ||
"command": "${workspaceFolder}/node_modules/.bin/standard", | ||
"args": ["${file}"], | ||
"options": { "cwd": "${fileDirname}" }, | ||
"presentation": { "reveal": "never" }, | ||
"problemMatcher": { | ||
"owner": "js", | ||
"severity": "warning", | ||
"fileLocation": ["absolute"], | ||
"pattern": { | ||
"regexp": "^(.*):(\\d+):(\\d+): (.+)$", | ||
"file": 1, | ||
"line": 2, | ||
"column": 3, | ||
"message": 4 | ||
} | ||
}, | ||
"isBackground": false | ||
} | ||
] | ||
} |