Skip to content

Commit

Permalink
Merge pull request #880 from dynamoose/debuggingVSCodeTooling
Browse files Browse the repository at this point in the history
Debugging VSCode Tooling
  • Loading branch information
fishcharlie committed May 7, 2020
2 parents e2f1be5 + 9402948 commit 34231f2
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
19 changes: 19 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "npm run test:debug:breakpoint",
"runtimeExecutable": "npm",
"runtimeArgs": [
"run",
"test:debug:breakpoint"
],
"port": 9229,
"skipFiles": [
"<node_internals>/**"
]
}
]
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
"build:watch": "npm run build -- -w",
"test:nocoverage": "mocha",
"test": "nyc npm run test:nocoverage",
"test:debug": "npm run test:nocoverage -- --inspect=9229",
"test:debug:breakpoint": "npm run test:nocoverage -- --inspect-brk=9229",
"test:debug": "npm run test:nocoverage -- --no-timeout --inspect=9229",
"test:debug:breakpoint": "npm run test:nocoverage -- --no-timeout --inspect-brk=9229",
"lint": "eslint . --ext .ts,.js --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"site:install": "cd docs && npm install",
Expand Down

1 comment on commit 34231f2

@vercel
Copy link

@vercel vercel bot commented on 34231f2 May 7, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deployment failed with the following error:

The most recent charge for your active payment method has failed. Please update it here: https://zeit.co/teams/dynamoose/settings/billing

Please sign in to comment.