Skip to content
This repository was archived by the owner on Jun 30, 2022. It is now read-only.

Commit 0b5d97b

Browse files
Batta32darrenj
authored andcommitted
Rename gitignore file to _.gitignore (#793)
1 parent 826ae3c commit 0b5d97b

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

templates/Enterprise-Template/src/typescript/generator-botbuilder-enterprise/generators/app/index.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,10 +318,14 @@ module.exports = class extends Generator {
318318
this.destinationPath(botGenerationPath, "src", "botServices.ts")
319319
);
320320

321+
this.fs.copy(
322+
this.templatePath(templateName, "_.gitignore"),
323+
this.destinationPath(botGenerationPath, ".gitignore")
324+
);
325+
321326
const commonFiles = [
322327
".env.development",
323328
".env.production",
324-
"gitignore",
325329
"README.md",
326330
"tsconfig.json",
327331
"deploymentScripts/webConfigPrep.js",
File renamed without changes.

templates/Enterprise-Template/src/typescript/generator-botbuilder-enterprise/test/generator-botbuilder-enterprise.test.suite.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ describe("The generator-botbuilder-enterprise tests", function() {
3232
const rootFiles = [
3333
".env.development",
3434
".env.production",
35-
"gitignore",
35+
".gitignore",
3636
"README.md",
3737
"tsconfig.json",
3838
"deploymentScripts/webConfigPrep.js",
@@ -43,9 +43,10 @@ describe("The generator-botbuilder-enterprise tests", function() {
4343
".env.test",
4444
"mocha.opts",
4545
"mockedConfiguration.bot",
46-
"testBase.js"
47-
]
48-
46+
"testBase.js",
47+
"flow/botTestBase.js"
48+
];
49+
4950
describe("should create", function() {
5051
botName = "myBot";
5152
botDesc = "A description for myBot";

0 commit comments

Comments
 (0)