Skip to content
This repository has been archived by the owner on Oct 5, 2021. It is now read-only.

Commit

Permalink
Merge pull request #336 from prabushi/master3
Browse files Browse the repository at this point in the history
Update VSCode API versions
  • Loading branch information
prabushi committed Mar 26, 2021
2 parents 4652572 + b189553 commit dd97b5e
Show file tree
Hide file tree
Showing 18 changed files with 114 additions and 1,004 deletions.
150 changes: 30 additions & 120 deletions package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,6 @@
"vscode:prepublish": "webpack --mode production",
"compile": "webpack --mode none",
"watch": "webpack --mode none --watch --info-verbosity verbose",
"postinstall": "node ./node_modules/vscode/bin/install",
"update-version": "node ./scripts/update-version.js",
"test-compile": "tsc -p ./",
"test": "npm run test-compile && node ./out/test/runTest.js",
Expand All @@ -268,6 +267,7 @@
},
"dependencies": {
"@types/js-base64": "^2.3.1",
"@types/vscode": "^1.54.0",
"cross-env": "^5.2.0",
"dom-parser": "^0.1.6",
"glob": "^7.1.3",
Expand All @@ -281,6 +281,7 @@
"vscode-extension-telemetry": "^0.1.2",
"vscode-languageclient": "5.1.1",
"vscode-languageserver-types": "^3.14.0",
"vscode-test": "^1.5.1",
"ws": "^6.2.1"
},
"devDependencies": {
Expand Down Expand Up @@ -309,7 +310,6 @@
"typescript": "^3.3.4000",
"unzipper": "^0.10.11",
"vsce": "^1.59.0",
"vscode": "1.1.37",
"vscode-debugadapter-testsupport": "^1.43.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.3"
Expand Down
232 changes: 0 additions & 232 deletions src/api-editor/activator.ts

This file was deleted.

20 changes: 0 additions & 20 deletions src/api-editor/index.ts

This file was deleted.

95 changes: 0 additions & 95 deletions src/api-editor/renderer.ts

This file was deleted.

1 change: 1 addition & 0 deletions src/project/cli-cmds/cmd-runner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export function runCommand(file: BallerinaProject | string, executor: string, cm
});
}
terminal = window.createTerminal({ name: 'Terminal', cwd: filePath });
terminal.sendText(process.platform === 'win32' ? 'cls' : 'clear', true);
terminal.show(true);
terminal.sendText(`${executor} ${cmd} ${argsList}`, true);
}
Loading

0 comments on commit dd97b5e

Please sign in to comment.