refact: removed unused method
and fixed typo
This commit is contained in:
parent
14bf081370
commit
2ed5ff36e4
1
.gitignore
vendored
1
.gitignore
vendored
@ -2,3 +2,4 @@ out
|
||||
node_modules
|
||||
.vscode-test/
|
||||
*.vsix
|
||||
demo
|
||||
|
2456
package-lock.json
generated
2456
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -136,13 +136,13 @@
|
||||
"test": "node ./out/test/runTest.js"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/vscode": "^1.48.0",
|
||||
"@types/glob": "^7.1.3",
|
||||
"@types/mocha": "^8.0.0",
|
||||
"@types/node": "^14.0.27",
|
||||
"eslint": "^7.6.0",
|
||||
"@types/vscode": "^1.48.0",
|
||||
"@typescript-eslint/eslint-plugin": "^3.8.0",
|
||||
"@typescript-eslint/parser": "^3.8.0",
|
||||
"eslint": "^7.6.0",
|
||||
"glob": "^7.1.6",
|
||||
"mocha": "^8.0.1",
|
||||
"typescript": "^3.8.3",
|
||||
|
@ -34,11 +34,6 @@ class BrightScreen {
|
||||
lessons: this.lessons
|
||||
}
|
||||
}
|
||||
|
||||
executeLessonTest (activeUserCode: string, lessonCode: string): void {
|
||||
eval(activeUserCode)
|
||||
eval(lessonCode)
|
||||
}
|
||||
}
|
||||
|
||||
export default BrightScreen
|
@ -22,7 +22,7 @@ function installCourse (workspaceFolder: string, repo: string, outputChannel: vs
|
||||
|
||||
gitInstallProcess.on('close', () => {
|
||||
console.log('Git Clone Process Closed')
|
||||
vscode.window.showInformationMessage('Course successfully installed ot .brightScreen')
|
||||
vscode.window.showInformationMessage('Course successfully installed to .brightScreen')
|
||||
})
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user