Skip to content

Commit

Permalink
Merge pull request #60 from Georepublic/update-vscode-launch-json
Browse files Browse the repository at this point in the history
update .vscode/launch.json
  • Loading branch information
sanak committed Feb 28, 2023
2 parents e4fb7b9 + 75bf0a8 commit a8e92a0
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,30 @@
"version": "0.2.0",
"configurations": [
{
"name": "Run test",
"program": "${workspaceFolder}/testrunner.js",
"request": "launch",
"skipFiles": [
"<node_internals>/**"
],
"type": "node",
},
{
// cat scripts/*.js | sed -e "s/::VERSION::/`head VERSION`/g" >> main.gs
"name": "Run gas upload dev",
"program": "${workspaceFolder}/node_modules/gas-manager/bin/gas",
"args": [
"upload",
"-c",
"./gas-config.json",
"-s",
"./gas-project-dev.json"
],
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/testrunner.js"
"type": "node"
}
]
}

0 comments on commit a8e92a0

Please sign in to comment.