-
Notifications
You must be signed in to change notification settings - Fork 107
Change how stats file assets are build using emit hook #132
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
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
2da54ab
Fix tests
rvlb c3eae8b
Fix flow for webpack5
rvlb 4a38afb
Refactor compilation logic and fix webpack4 flow
rvlb 7aed240
Refactors output handling
rvlb 278cc18
Set release version
rvlb 9d56786
Fix how assets are obtained in the pipeline
rvlb 31eaa92
Rename this.output as this.contents
rvlb 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
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 |
|---|---|---|
|
|
@@ -64,6 +64,87 @@ describe('BundleTrackerPlugin bases tests', () => { | |
| ); | ||
| }); | ||
|
|
||
| it('It should generate the stats file when the plugin runs twice and the output assets already exist', done => { | ||
|
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 test ensures that even if an asset didn't change between builds, the stats file will always contain its correct info. |
||
| const expectErrors = null; | ||
| const expectWarnings = getWebpack4WarningMessage(); | ||
|
|
||
| // 1st run | ||
| testPlugin( | ||
| webpack, | ||
| { | ||
| context: __dirname, | ||
| entry: path.resolve(__dirname, 'fixtures', 'index.js'), | ||
| output: { | ||
| path: OUTPUT_DIR, | ||
| filename: 'js/[name].js', | ||
| publicPath: 'http://localhost:3000/assets/', | ||
| }, | ||
| plugins: [ | ||
| new BundleTrackerPlugin({ | ||
| path: OUTPUT_DIR, | ||
| filename: 'webpack-stats.json', | ||
| }), | ||
| ], | ||
| }, | ||
| { | ||
| status: 'done', | ||
| publicPath: 'http://localhost:3000/assets/', | ||
| chunks: { | ||
| main: ['js/main.js'], | ||
| }, | ||
| assets: { | ||
| 'js/main.js': { | ||
| name: 'js/main.js', | ||
| path: OUTPUT_DIR + '/js/main.js', | ||
| publicPath: 'http://localhost:3000/assets/js/main.js', | ||
| }, | ||
| }, | ||
| }, | ||
| 'webpack-stats.json', | ||
| jest.fn(), | ||
| expectErrors, | ||
| expectWarnings, | ||
| ); | ||
|
|
||
| // 2nd run | ||
| testPlugin( | ||
| webpack, | ||
| { | ||
| context: __dirname, | ||
| entry: path.resolve(__dirname, 'fixtures', 'index.js'), | ||
| output: { | ||
| path: OUTPUT_DIR, | ||
| filename: 'js/[name].js', | ||
| publicPath: 'http://localhost:3000/assets/', | ||
| }, | ||
| plugins: [ | ||
| new BundleTrackerPlugin({ | ||
| path: OUTPUT_DIR, | ||
| filename: 'webpack-stats.json', | ||
| }), | ||
| ], | ||
| }, | ||
| { | ||
| status: 'done', | ||
| publicPath: 'http://localhost:3000/assets/', | ||
| chunks: { | ||
| main: ['js/main.js'], | ||
| }, | ||
| assets: { | ||
| 'js/main.js': { | ||
| name: 'js/main.js', | ||
| path: OUTPUT_DIR + '/js/main.js', | ||
| publicPath: 'http://localhost:3000/assets/js/main.js', | ||
| }, | ||
| }, | ||
| }, | ||
| 'webpack-stats.json', | ||
| done, | ||
| expectErrors, | ||
| expectWarnings, | ||
| ); | ||
| }); | ||
|
|
||
| it('It should add log time when option is set', done => { | ||
| const expectErrors = null; | ||
| const expectWarnings = getWebpack4WarningMessage(); | ||
|
|
||
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
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.
The emit hook was the only place where we could always access the full list of compiled assets and could access their in-memory contents.
Other hooks tried:
done: we could not access the in-memory content of the filescompilation.processAssets: we do not have to all compiled assets, broke tests where we compressed themassetEmitted: we have access to all files + their in-memory content, however it's not always called without changing the plugin settings, so ended up causing the stats file to have missing files when not used in a dev server environment.