From 3e8443bebe9ba53f00cc564acdf64f4cb60620c8 Mon Sep 17 00:00:00 2001 From: Ralph Callaway Date: Tue, 16 Aug 2022 15:51:24 -0600 Subject: [PATCH] sfdx or the vs code extension added a new `.sf` folder that we should ignore until we find out it has pertinent config. currently it is just which org you are targeting --- generators/app/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/generators/app/index.ts b/generators/app/index.ts index 3a9f74a..8a70f52 100644 --- a/generators/app/index.ts +++ b/generators/app/index.ts @@ -265,7 +265,7 @@ module.exports = class extends Generator { : ""; const currentIgnoreLines = currentIgnore.split(EOL); - const defaultIgnores = ["dist/", "node_modules/"]; + const defaultIgnores = ["dist/", "node_modules/", ".sf/"]; const missing = []; for (const defaultIgnore of defaultIgnores) { if (!currentIgnoreLines.includes(defaultIgnore)) { @@ -296,7 +296,7 @@ module.exports = class extends Generator { }); } - end() {} + end() { } }; // HELPER (move to new file)