-
Notifications
You must be signed in to change notification settings - Fork 177
hash global imports #1557
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
Merged
Merged
hash global imports #1557
Changes from 16 commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
7bfdc0e
hash global imports
mbostock 127497e
more expectStandardFiles
mbostock 2d4e2e2
fix resolutions
mbostock 2e7bef8
test hashes
mbostock 59b709a
include npm resolutions in module hash
mbostock e841d2c
remove unused addPublic
mbostock 8ef606c
hash stylesheets, too
mbostock c3bbe7a
comment
mbostock aefd7d8
more resolution fixes
mbostock f0ee302
cleaner import resolution
mbostock f711c54
resolveImport option for rollupClient
mbostock 9df1756
only hash _observablehq assets
mbostock 2223026
getLocalModuleHash
mbostock fbdb415
minimize churn
mbostock b34123a
minimize churn
mbostock 858f056
consolidate builtin resolution
mbostock 0a440ba
fix hash for import.meta.resolve
mbostock c48b1f6
prettier
mbostock c7c8124
fix input resolution
mbostock bcc1e0a
don’t hash minisearch.json
mbostock 6919f50
Merge branch 'main' into mbostock/hash-global-imports
Fil 03dbee9
fix tests
mbostock 522d131
Revert "don’t hash minisearch.json"
mbostock 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
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
|---|---|---|
|
|
@@ -62,7 +62,7 @@ export interface DeployEffects extends ConfigEffects, TtyEffects, AuthEffects { | |
| output: NodeJS.WritableStream; | ||
| visitFiles: (root: string) => Generator<string>; | ||
| stat: (path: string) => Promise<Stats>; | ||
| build: ({config, addPublic}: BuildOptions, effects?: BuildEffects) => Promise<void>; | ||
| build: ({config}: BuildOptions, effects?: BuildEffects) => Promise<void>; | ||
|
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. I removed the |
||
| readCacheFile: (sourceRoot: string, path: string) => Promise<string>; | ||
| } | ||
|
|
||
|
|
||
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
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
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.
Now that we’ve implemented configurable import resolution in
rollupClient, we don’t need to special-case theminisearch.jsonresolution (which was already content-hashed since it changes often); we can use the normal mechanism for import resolution instead.