-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Vsc build updates #5797
Merged
Merged
Vsc build updates #5797
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
c3dd029
update changelog and bump version number
yurm04 6fc99b2
updated date
yurm04 074b03d
Update polaris-for-vscode/CHANGELOG.md
c0169a5
bumping version
yurm04 b4d3859
update vscodeignore to stop bundling entire monorepo with extension
yurm04 a3c8572
Merge branch 'main' of https://github.com/Shopify/polaris into vsc-bu…
yurm04 da1e2a0
update ignore
yurm04 5eb3934
change date on changelog
yurm04 5dd372e
Merge branch 'main' of https://github.com/Shopify/polaris into vsc-bu…
yurm04 cf78bf2
update date
yurm04 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
.turbo | ||
../** | ||
**/tsconfig.json | ||
**/*.map | ||
**/*.ts | ||
*.vsix | ||
CONTRIBUTING.md | ||
docs | ||
scripts | ||
src | ||
node_modules |
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
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.
for some reason the
vsce
cli will package up the entire repo with the extension without this. I'm hoping this won't be necessary after @romellogoodman's PR to add rollup as a build tool #5802There 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.
Might be helpful to include a comment here since it's resolving a specific edge case. I don't know the ignore pattern off the top, but we could also try to make this self documenting with a negated pattern e.g.
ignore everything that's not polaris-for-vscode
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.
I did some digging here and seems like there still ins't official support for
vsce package
for yarn workspacesThis should be a problem if we are bundling
node_modules
with the package using webpack or rollup (I think) according to this comment