Skip to content
This repository has been archived by the owner on Jul 15, 2023. It is now read-only.

Migrate from Grunt to npm scripts #584

Merged
merged 16 commits into from
Oct 28, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update VS Code debug tasks
IllusionMH committed Oct 25, 2018

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit d87ecad811f632cb1f8f835de5690be932387b1e
26 changes: 19 additions & 7 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -4,14 +4,26 @@
{
"type": "node",
"request": "launch",
"name": "Run Tests",
"program": "${workspaceFolder}/node_modules/.bin/grunt",
"name": "Run Mocha Tests",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"args": [
"mochaTest"
],
"outFiles": [
"${workspaceFolder}/dist/src/**/*.js"
"--no-timeouts",
"--colors",
"${workspaceFolder}/dist/src/tests/**/*.js"
]
},
{
"type": "node",
"request": "launch",
"name": "Run TSLint Tests",
"program": "${workspaceFolder}/node_modules/tslint/bin/tslint",
"args": [
"--test",
"-r",
"dist/src",
"tests/**"
],
"outputCapture": "std"
}
]
}
}