-
Notifications
You must be signed in to change notification settings - Fork 372
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
fix: improve the user experience about lg editor #3337
Merged
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
2e5be0a
move lg api into worker
a-b-r-o-w-n 095631a
output worker files with readable names
a-b-r-o-w-n cc78eb9
update the version of botbuild-lg
lei9444 173b91c
Merge branch 'master' into lgperf
lei9444 837eaa0
remove promise in parse event
a-b-r-o-w-n 4cbdb2a
refacotr lg worker to catch all errors
a-b-r-o-w-n db22978
Merge branch 'master' into lgperf
lei9444 402279d
add worker for lg lsp
lei9444 0eab492
Merge branch 'master' of https://github.com/microsoft/BotFramework-Co…
lei9444 16f9779
Merge branch 'master' into lgperf
a-b-r-o-w-n 59a6739
add a null check when rejecting
a-b-r-o-w-n 561d488
dissallow node integration in worker threads
a-b-r-o-w-n c0342ff
remove request_light
a-b-r-o-w-n a2c1169
update worker file naming
a-b-r-o-w-n 9bb6ebc
Merge branch 'master' into lgperf
cwhitten e8c290f
fix unit test
lei9444 018d051
Merge branch 'master' into lgperf
lei9444 7c23a4a
set asar = false
lei9444 dd56752
Merge branch 'lgperf' of https://github.com/lei9444/BotFramework-Comp…
lei9444 ccf1b65
add force exit for jest
lei9444 b9f2c12
move node_module to unpack folder
lei9444 7f3b3e5
Merge branch 'master' into lgperf
lei9444 5df881b
Swapped out server side worker with child process.
tonyanziano 1e54b47
Merge branch 'master' into lgperf
lei9444 16558cd
fix unit tests in lg lsp
lei9444 b025ada
clean the code
lei9444 4b59439
Merge branch 'master' of https://github.com/microsoft/BotFramework-Co…
lei9444 576a3af
only support test env in lg lsp
lei9444 9dcd837
fix some comments
lei9444 b377257
update the dev dependency
lei9444 6fc46a5
Merge branch 'master' into lgperf
lei9444 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
"build:demo": "cd demo && tsc --build tsconfig.json", | ||
"prepublishOnly": "npm run build", | ||
"clean": "rimraf lib demo/dist", | ||
"start": "cd demo && ts-node ./src/server.ts", | ||
"start": "cd demo && set NODE_ENV=development&& ts-node ./src/server.ts", | ||
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 isn't cross platform friendly. 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. @a-b-r-o-w-n this got fixed already with
lei9444 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"test": "jest", | ||
"lint": "eslint --quiet ./src ./__tests__", | ||
"lint:fix": "yarn lint --fix", | ||
|
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Why isn't the node env already test when running tests? This doesn't seem right.