This repository was archived by the owner on Jul 9, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 375
fix: set func-related settings during build step #7723
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
4eea8e9
set func-related settings during build step
benbrown 969a6c0
slight refactor to reduce duplicated code
benbrown e1269b5
add type
benbrown 8040e5d
Merge branch 'main' into benbrown/fixesfunctions
benbrown 15ae619
add typings in runtime plugin definition
benbrown 73427d7
Merge branch 'benbrown/fixesfunctions' of https://github.com/microsof…
benbrown 70200b6
set type of port to number
benbrown 18d4129
Merge branch 'main' into benbrown/fixesfunctions
benbrown 7281a9d
fix types, remove _ on variables that are used
benbrown a8212f5
Merge branch 'benbrown/fixesfunctions' of https://github.com/microsof…
benbrown 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -10,6 +10,7 @@ | |
| "watch": "yarn build --watch" | ||
| }, | ||
| "dependencies": { | ||
| "@botframework-composer/types": "file:../../Composer/packages/types", | ||
|
Contributor
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. Is this how published packages should be expressing dependencies? Not as familiar with file references.
Contributor
Author
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 is how the extensions currently reference these libraries that are in a different yarn workspace. I'm not sure if they should be updated to point to the published packages... |
||
| "fs-extra": "^9.0.1", | ||
| "path": "^0.12.7", | ||
| "rimraf": "^3.0.2" | ||
|
|
||
Oops, something went wrong.
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.
Needed to move the port selection up in the code a bit so that it can be passed to the build step.