From 19e2a80bf9955995e69146a04cb5da4c7d825cc2 Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Sun, 9 Apr 2023 08:51:43 -0600 Subject: [PATCH] Fix some vscode extension template bugs --- src/kiss/Main.hx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/kiss/Main.hx b/src/kiss/Main.hx index 0c18965..8470adb 100644 --- a/src/kiss/Main.hx +++ b/src/kiss/Main.hx @@ -215,6 +215,7 @@ class Main { var makeFileForNewProject:haxe.Constraints.Function = _makeFileForNewProject.bind(kissVscodeApiLibPath, _, workingDir, title, pkg); var makeFolderForNewProject:haxe.Constraints.Function = _makeFolderForNewProject.bind(kissVscodeApiLibPath, _, workingDir, title, pkg); makeFolderForNewProject(["src"]); + makeFolderForNewProject([".vscode"]); makeFileForNewProject([".gitignore"]); makeFileForNewProject([".vscodeignore"]); makeFileForNewProject(["README.md"]);