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

[Enterprise Bot Generator][TypeScript] Rename of gitignore file #793

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -318,10 +318,14 @@ module.exports = class extends Generator {
this.destinationPath(botGenerationPath, "src", "botServices.ts")
);

this.fs.copy(
this.templatePath(templateName, "_.gitignore"),
this.destinationPath(botGenerationPath, ".gitignore")
);

const commonFiles = [
".env.development",
".env.production",
"gitignore",
"README.md",
"tsconfig.json",
"deploymentScripts/webConfigPrep.js",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ describe("The generator-botbuilder-enterprise tests", function() {
const rootFiles = [
".env.development",
".env.production",
"gitignore",
".gitignore",
"README.md",
"tsconfig.json",
"deploymentScripts/webConfigPrep.js",
Expand All @@ -43,9 +43,10 @@ describe("The generator-botbuilder-enterprise tests", function() {
".env.test",
"mocha.opts",
"mockedConfiguration.bot",
"testBase.js"
]

"testBase.js",
"flow/botTestBase.js"
];

describe("should create", function() {
botName = "myBot";
botDesc = "A description for myBot";
Expand Down