-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* frame out Empty bot, add placeholder names for other templates - added JS/TS empty bot template - added placeholder names for echo and basic - cleaned up generated package.json files - renamed markdown files to be CAPITAL.md cased - switched TS/JS bot name validation to force kabob casing * update template writers to use name constants - using new consts for template options in order to account for any name changes that may come. e.g. basic template to core template, etc. * Simply and cleanup echo JS and TS - remove state - add eslint and tslint support - fix eslint and tslint errors and warnings in generated code - refine generated README.md files - rename —botName flag to be all lowercase —botname - added empty bot template option - start on csharp templates * Another round of CSE feedback - remove C# support, all up - update tsconfig.json for TypeScript generated templates - update gitignore to ignore lib folder - update restify dependency to latest version - added testGen.cmd file that generates, builds, and lints all samples, all languages - number of code consistency issues - have TypeScript generated templates use TypeScript and tslint as devDependencies - update README.md files for TypeScript generated templates to remove TypeScript and tslint as prereqs - fix race condition using concurrently for npm TypeScript scripts - bump the patch version * botName property was renamed to botname - missed this one when I did the rename * rework README.md - turn the crank on the README.md - add a description to noprompt cli option - bump the minor version number - remove unused constants
- Loading branch information
Showing
63 changed files
with
2,179 additions
and
1,423 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
// display names of the template options | ||
module.exports.BOT_TEMPLATE_NAME_EMPTY = 'Empty Bot'; | ||
module.exports.BOT_TEMPLATE_NAME_SIMPLE = 'Echo Bot'; | ||
module.exports.BOT_TEMPLATE_NAME_CORE = 'Basic Bot'; | ||
|
||
// aka.ms links to documentation for each template option | ||
module.exports.BOT_HELP_URL_EMPTY = 'https://aka.ms/bot-template-empty'; | ||
module.exports.BOT_HELP_URL_SIMPLE = 'https://aka.ms/bot-template-echo'; | ||
module.exports.BOT_HELP_URL_CORE = 'https://aka.ms/bot-template-basic'; | ||
|
||
// --noprompt template values | ||
module.exports.BOT_TEMPLATE_NOPROMPT_EMPTY = 'Empty'; | ||
module.exports.BOT_TEMPLATE_NOPROMPT_SIMPLE = 'Echo'; | ||
module.exports.BOT_TEMPLATE_NOPROMPT_CORE = 'Basic'; | ||
|
||
// programming language name options | ||
module.exports.BOT_LANG_NAME_JAVASCRIPT = 'JavaScript'; | ||
module.exports.BOT_LANG_NAME_TYPESCRIPT = 'TypeScript'; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.