refact: removed unused method

and fixed typo
This commit is contained in:
ysandler 2021-07-23 23:35:29 -05:00 committed by joshuashoemaker
parent 14bf081370
commit 2ed5ff36e4
5 changed files with 2459 additions and 9 deletions

1
.gitignore vendored
View File

@ -2,3 +2,4 @@ out
node_modules node_modules
.vscode-test/ .vscode-test/
*.vsix *.vsix
demo

2456
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -136,13 +136,13 @@
"test": "node ./out/test/runTest.js" "test": "node ./out/test/runTest.js"
}, },
"devDependencies": { "devDependencies": {
"@types/vscode": "^1.48.0",
"@types/glob": "^7.1.3", "@types/glob": "^7.1.3",
"@types/mocha": "^8.0.0", "@types/mocha": "^8.0.0",
"@types/node": "^14.0.27", "@types/node": "^14.0.27",
"eslint": "^7.6.0", "@types/vscode": "^1.48.0",
"@typescript-eslint/eslint-plugin": "^3.8.0", "@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0", "@typescript-eslint/parser": "^3.8.0",
"eslint": "^7.6.0",
"glob": "^7.1.6", "glob": "^7.1.6",
"mocha": "^8.0.1", "mocha": "^8.0.1",
"typescript": "^3.8.3", "typescript": "^3.8.3",

View File

@ -34,11 +34,6 @@ class BrightScreen {
lessons: this.lessons lessons: this.lessons
} }
} }
executeLessonTest (activeUserCode: string, lessonCode: string): void {
eval(activeUserCode)
eval(lessonCode)
}
} }
export default BrightScreen export default BrightScreen

View File

@ -22,7 +22,7 @@ function installCourse (workspaceFolder: string, repo: string, outputChannel: vs
gitInstallProcess.on('close', () => { gitInstallProcess.on('close', () => {
console.log('Git Clone Process Closed') console.log('Git Clone Process Closed')
vscode.window.showInformationMessage('Course successfully installed ot .brightScreen') vscode.window.showInformationMessage('Course successfully installed to .brightScreen')
}) })
} }