Skip to content

Commit

Permalink
🐝 fix accidental commits in launch.json
Browse files Browse the repository at this point in the history
  • Loading branch information
danyx23 committed Nov 2, 2023
1 parent a81925c commit 644c39c
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 8 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ wordpress/web/wp/wp-content/**
wordpress/vendor/**
packages/@ourworldindata/*/dist/
dist/
.vscode/
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ coverage
packages/@ourworldindata/*/dist/
dist/
grapherData/
.vscode/
28 changes: 20 additions & 8 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
"name": "Jest Tests",
"program": "${workspaceFolder}/node_modules/jest/bin/jest.js",
"request": "launch",
"skipFiles": ["<node_internals>/**"],
"skipFiles": [
"<node_internals>/**"
],
"type": "node"
},
{
Expand All @@ -19,7 +21,10 @@
"request": "launch",
"name": "Jest Test current file",
"program": "${workspaceFolder}/node_modules/.bin/jest",
"args": ["${fileBasenameNoExtension}.js", "--watch"],
"args": [
"${fileBasenameNoExtension}.js",
"--watch"
],
"console": "integratedTerminal"
// "internalConsoleOptions": "neverOpen"
},
Expand Down Expand Up @@ -53,31 +58,38 @@
"name": "Run migrate WP to ArchieML",
"program": "${workspaceFolder}/itsJustJavascript/db/migrateWpPostsToArchieMl.js",
"request": "launch",
"skipFiles": ["<node_internals>/**"],
"skipFiles": [
"<node_internals>/**"
],
"type": "node"
},
{
"name": "Sync WP posts to grapher",
"program": "${workspaceFolder}/itsJustJavascript/db/syncPostsToGrapher.js",
"request": "launch",
"skipFiles": ["<node_internals>/**"],
"skipFiles": [
"<node_internals>/**"
],
"type": "node",
"runtimeExecutable": "/home/daniel/.local/share/fnm/node-versions/v18.16.0/installation/bin/node"
},
{
"name": "Run SVGTester",
"program": "${workspaceFolder}/itsJustJavascript/devTools/svgTester/verify-graphs.js",
"request": "launch",
"skipFiles": ["<node_internals>/**"],
"skipFiles": [
"<node_internals>/**"
],
"type": "node",
"args": ["-g", "367"]
"args": [
"-g",
"367"
]
},
{
"name": "Launch admin server",
"program": "${workspaceFolder}/itsJustJavascript/adminSiteServer/app.js",
"request": "launch",
"type": "node",
"runtimeExecutable": "/home/daniel/.local/share/fnm/node-versions/v18.16.0/installation/bin/node"
},
{
"name": "Attach to node",
Expand Down

0 comments on commit 644c39c

Please sign in to comment.