Skip to content

Commit

Permalink
chore(deps): bump puppeteer and pino in diagrams.net (yuzutech#1794)
Browse files Browse the repository at this point in the history
  • Loading branch information
ggrossetie authored and jynolen committed Dec 3, 2024
1 parent 5b0b586 commit 1a257b4
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 0 deletions.
21 changes: 21 additions & 0 deletions diagrams.net/.vscode/launch.json
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"
}
}
]
}
7 changes: 7 additions & 0 deletions diagrams.net/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"triggerTaskOnSave.tasks": {
"lint": [
"src/*.js"
],
}
}
26 changes: 26 additions & 0 deletions diagrams.net/.vscode/tasks.json
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
}
]
}

0 comments on commit 1a257b4

Please sign in to comment.