-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move to latest versions of SDK #2378
Changes from all commits
5115131
7fd2f91
89f59e9
1820822
39a3ae1
203ee66
759d44e
378b6bd
2c699fd
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
@microsoft:registry=https://botbuilder.myget.org/F/botframework-cli/npm/ | ||
registry=https://botbuilder.myget.org/F/botbuilder-v4-js-daily/npm/ |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/usr/bin/env node | ||
|
||
require('@oclif/command').run() | ||
.catch(require('@oclif/errors/handle')) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
@echo off | ||
|
||
node "%~dp0\run" %* |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,15 +5,17 @@ | |
"author": "Microsoft", | ||
"bugs": "https://github.com/Microsoft/BotBuilder-Samples/issues", | ||
"dependencies": { | ||
"@microsoft/bf-cli-command": "^4.8.0", | ||
"@microsoft/bf-cli-command": "^4.9.0-RC6", | ||
"@microsoft/bf-lu": "^4.10.0-preview.130225", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
this doesn't seem right. #Resolved There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
"@oclif/command": "^1.5.19", | ||
"@oclif/config": "^1.14.0", | ||
"tslib": "^1.11.1", | ||
"@oclif/errors": "~1.2.2", | ||
"@types/lru-cache": "^5.1.0", | ||
"@types/semver": "^6.0.1", | ||
"@types/xml2js": "^0.4.4", | ||
"adaptive-expressions": "^4.9.0-rc42", | ||
"ajv": "^6.9.1", | ||
"botbuilder-lg": "^4.9.0-rc42", | ||
"chalk": "^2.4.2", | ||
"clone": "^2.1.2", | ||
"fs-extra": "^8.1.0", | ||
|
@@ -25,10 +27,8 @@ | |
"path": "^0.12.7", | ||
"seedrandom": "~3.0.5", | ||
"semver": "^5.7.0", | ||
"xml2js": "^0.4.19", | ||
"adaptive-expressions": "^4.8.0-preview", | ||
"botbuilder-lg": "^4.8.0-preview", | ||
"@microsoft/bf-lu": "^4.8.0" | ||
"tslib": "^1.11.1", | ||
"xml2js": "^0.4.19" | ||
}, | ||
"devDependencies": { | ||
"@oclif/dev-cli": "^1.22.2", | ||
|
@@ -58,6 +58,7 @@ | |
"/lib", | ||
"/npm-shrinkwrap.json", | ||
"/oclif.manifest.json", | ||
"/templates", | ||
"/yarn.lock" | ||
], | ||
"homepage": "https://github.com/Microsoft/BotBuilder-Samples", | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
# template | ||
- ``` | ||
# booleanEntity(value) | ||
${'#'} booleanEntity(value) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
what the wha? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug in LG that they are working on fixing and this is the work-around until they do. In reply to: 423898362 [](ancestors = 423898362) |
||
- SWITCH: \${value} | ||
- CASE: \${'true'} | ||
- true | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,11 +15,11 @@ ${ValueTemplate()} | |
|
||
# AskTemplate | ||
- ``` | ||
# Ask${property} | ||
- \${askEnumArray('${property}')\}``` | ||
${'#'} Ask${property} | ||
- \${askEnumArray('${property}')}``` | ||
|
||
# ValueTemplate | ||
- ``` | ||
# ${property}(values) | ||
${'#'} ${property}(values) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
can you # ? #Resolved There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
- \${enumArrayValue('${property}', values)}``` | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is no rc42? #Resolved