Skip to content

Single runtime chunk #3847

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 24 commits into from
Jun 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
9dde6ac
update
ScriptedAlchemy Apr 26, 2024
a97da1c
update
ScriptedAlchemy Apr 29, 2024
1e1cd99
feat: single runtime chunk support
ScriptedAlchemy Apr 29, 2024
7297f5a
feat: single runtime chunk support
ScriptedAlchemy Apr 29, 2024
e030fa2
move server to server to rspack
ScriptedAlchemy May 2, 2024
d352dfc
Merge branch 'master' into single-runtime-chunk
ScriptedAlchemy May 2, 2024
a362b51
single runtime chunk
ScriptedAlchemy May 3, 2024
b59fee3
Merge branch 'refs/heads/master' into single-runtime-chunk
ScriptedAlchemy May 7, 2024
0ec5571
Merge branch 'master' into single-runtime-chunk
ScriptedAlchemy May 9, 2024
fc5631c
Merge branch 'refs/heads/master' into single-runtime-chunk
ScriptedAlchemy May 9, 2024
3709e14
update rspack
ScriptedAlchemy May 9, 2024
88ad19b
update rspack
ScriptedAlchemy May 9, 2024
43e8ca0
Merge remote-tracking branch 'origin/single-runtime-chunk' into singl…
ScriptedAlchemy May 9, 2024
933af19
locks
ScriptedAlchemy May 9, 2024
fdb34ef
Merge branch 'refs/heads/master' into single-runtime-chunk
ScriptedAlchemy May 14, 2024
700757a
locks
ScriptedAlchemy May 14, 2024
a3ea52c
Merge branch 'refs/heads/master' into single-runtime-chunk
ScriptedAlchemy Jun 3, 2024
6334558
update modernjs to enhanced
ScriptedAlchemy Jun 3, 2024
c53c36e
fix single runtime for rspack
ScriptedAlchemy Jun 3, 2024
cb2868d
Merge branch 'refs/heads/master' into single-runtime-chunk
ScriptedAlchemy Jun 10, 2024
0f5fc30
fix single runtime for rspack
ScriptedAlchemy Jun 10, 2024
18acc88
Merge branch 'refs/heads/master' into single-runtime-chunk
ScriptedAlchemy Jun 12, 2024
92a888d
fix single runtime for rspack
ScriptedAlchemy Jun 12, 2024
18e503c
fix single runtime for rspack
ScriptedAlchemy Jun 12, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions advanced-api/dynamic-remotes/app1/rspack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ module.exports = {
shareScope: 'default', // share scope with this name will be used
singleton: true, // only a single version of the shared module is allowed
},
'react/jsx-dev-runtime': {},
'react-dom': {
singleton: true, // only a single version of the shared module is allowed
},
Expand Down
1 change: 1 addition & 0 deletions advanced-api/dynamic-remotes/app2/rspack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ module.exports = {
},
shared: {
moment: deps.moment,
'react/jsx-dev-runtime': {},
react: {
requiredVersion: deps.react,
import: 'react', // the "react" package will be used a provided and fallback module
Expand Down
Loading
Loading