This repository has been archived by the owner on Jan 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* minor cleanups * changes accordingly to MS mock debugger For now we don't upgrade vscode packages from 1.19.0 to 1.26.0 due to breakage
- Loading branch information
Morten Henriksen
committed
Feb 9, 2018
1 parent
21f43e7
commit a826b16
Showing
8 changed files
with
2,588 additions
and
256 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ node_modules/ | |
out/ | ||
npm-debug.log | ||
perl_debugger.log | ||
*.vsix |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,18 @@ | ||
{ | ||
"version": "0.1.0", | ||
"command": "npm", | ||
"isShellCommand": true, | ||
"isWatching": true, | ||
"showOutput": "always", | ||
"args": [ | ||
"run", "watch" | ||
], | ||
"problemMatcher": "$tsc-watch" | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"type": "npm", | ||
"identifier": "npm", | ||
"script": "watch", | ||
"problemMatcher": [ | ||
"$tsc-watch" | ||
], | ||
"isBackground": true, | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,9 +8,10 @@ | |
"name": "Morten Henriksen", | ||
"email": "[email protected]" | ||
}, | ||
"license": "MIT", | ||
"engines": { | ||
"vscode": "^1.1.0", | ||
"node": "^5.10.0" | ||
"vscode": ">=1.1.10", | ||
"node": ">=8.0.0" | ||
}, | ||
"icon": "images/vscode-perl-debug.png", | ||
"categories": [ | ||
|
@@ -42,21 +43,22 @@ | |
] | ||
}, | ||
"dependencies": { | ||
"vscode-debugadapter": "^1.19.0", | ||
"vscode-debugprotocol": "^1.19.0" | ||
"await-notify": "1.0.1", | ||
"vscode-debugadapter": "1.19.0", | ||
"vscode-debugprotocol": "1.19.0" | ||
}, | ||
"devDependencies": { | ||
"concurrently": "^3.4.0", | ||
"concurrently": "3.4.0", | ||
"@types/es6-promise": "0.0.32", | ||
"@types/mocha": "^2.2.32", | ||
"@types/node": "^6.0.39", | ||
"mocha": "^3.2.0", | ||
"semantic-release": "^10.0.1", | ||
"semantic-release-vsce": "^0.1.4", | ||
"typescript": "^2.2.2", | ||
"vscode": "^1.1.0", | ||
"vscode-debugadapter-testsupport": "^1.19.0", | ||
"tslint": "^5.1.0" | ||
"@types/mocha": "2.2.45", | ||
"@types/node": "7.0.43", | ||
"mocha": "3.2.0", | ||
"semantic-release": "10.0.1", | ||
"semantic-release-vsce": "0.1.4", | ||
"typescript": "2.7.1", | ||
"vscode": "1.1.10", | ||
"vscode-debugadapter-testsupport": "1.19.0", | ||
"tslint": "5.8.0" | ||
}, | ||
"scripts": { | ||
"prepublish": "tsc -p ./src", | ||
|
@@ -86,6 +88,9 @@ | |
"label": "Perl Debug", | ||
"program": "./out/perlDebug.js", | ||
"runtime": "node", | ||
"languages": [ | ||
"perl" | ||
], | ||
"configurationAttributes": { | ||
"launch": { | ||
"required": [ | ||
|
@@ -106,12 +111,12 @@ | |
"root": { | ||
"type": "string", | ||
"description": "Workspace root.", | ||
"default": "${workspaceRoot}/" | ||
"default": "${workspaceFolder}/" | ||
}, | ||
"program": { | ||
"type": "string", | ||
"description": "Absolute path to perl file.", | ||
"default": "${workspaceRoot}/${relativeFile}" | ||
"default": "${workspaceFolder}/${relativeFile}" | ||
}, | ||
"stopOnEntry": { | ||
"type": "boolean", | ||
|
@@ -141,7 +146,22 @@ | |
} | ||
} | ||
}, | ||
"initialConfigurations": [ | ||
{ | ||
"type": "perl", | ||
"request": "launch", | ||
"name": "Perl-Debug local", | ||
"program": "${workspaceFolder}/${relativeFile}", | ||
"exec": "perl", | ||
"execArgs": [], | ||
"root": "${workspaceRoot}/", | ||
"inc": [], | ||
"args": [], | ||
"env": {}, | ||
"stopOnEntry": true | ||
"initialConfigurations": "extension.perl-debug.provideInitialConfigurations" | ||
} | ||
] | ||
} | ||
] | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.