Skip to content
This repository has been archived by the owner on Jan 15, 2025. It is now read-only.

LU CLI separation from lib #568

Merged
merged 3 commits into from
Feb 13, 2020
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
193 changes: 189 additions & 4 deletions common/config/rush/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"@microsoft/bf-cli-config",
"@microsoft/bf-qnamaker",
"@microsoft/bf-luis-cli",
"@microsoft/bf-lu",
"@microsoft/bf-cli-lu",
"@microsoft/bf-dialog",
"@microsoft/bf-cli-plugins"
],
Expand All @@ -58,7 +58,7 @@
"dependencies": {
"@microsoft/bf-chatdown": "1.0.0",
"@microsoft/bf-cli-config": "1.0.0",
"@microsoft/bf-lu": "1.0.0",
"@microsoft/bf-cli-lu": "1.0.0",
"@microsoft/bf-luis-cli": "1.0.0",
"@microsoft/bf-qnamaker": "1.0.0",
"@microsoft/bf-dialog": "1.0.0",
Expand Down
11 changes: 11 additions & 0 deletions packages/lu-cli/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
root = true

[*]
indent_style = space
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
2 changes: 2 additions & 0 deletions packages/lu-cli/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/lib
/test
21 changes: 21 additions & 0 deletions packages/lu-cli/.eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"extends": [
"oclif",
"oclif-typescript"
],
"rules": {
"guard-for-in": "off",
"no-await-in-loop": "off",
"no-negated-condition": "off",
"max-params": "off",
"file-header": [
true,
{
"match": "Copyright \\(c\\) Microsoft Corporation\\.*",
"allow-single-line-comments": false,
"default": "Copyright (c) Microsoft Corporation. All rights reserved.\nLicensed under the MIT License.",
"enforce-trailing-newline": false
}
]
}
}
8 changes: 8 additions & 0 deletions packages/lu-cli/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
*-debug.log
*-error.log
/.nyc_output
/dist
/lib
/tmp
/yarn.lock
node_modules
Loading