Skip to content

Commit

Permalink
Expose Fizz in stable builds (#21602)
Browse files Browse the repository at this point in the history
  • Loading branch information
gaearon committed Jun 2, 2021
1 parent e16d61c commit 76f85b3
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions scripts/rollup/bundles.js
Original file line number Diff line number Diff line change
Expand Up @@ -267,16 +267,14 @@ const bundles = [

/******* React DOM Fizz Server *******/
{
bundleTypes: __EXPERIMENTAL__
? [NODE_DEV, NODE_PROD, UMD_DEV, UMD_PROD]
: [],
bundleTypes: [NODE_DEV, NODE_PROD, UMD_DEV, UMD_PROD],
moduleType: RENDERER,
entry: 'react-dom/unstable-fizz.browser',
global: 'ReactDOMFizzServer',
externals: ['react', 'react-dom/server'],
},
{
bundleTypes: __EXPERIMENTAL__ ? [NODE_DEV, NODE_PROD] : [],
bundleTypes: [NODE_DEV, NODE_PROD],
moduleType: RENDERER,
entry: 'react-dom/unstable-fizz.node',
global: 'ReactDOMFizzServer',
Expand Down

0 comments on commit 76f85b3

Please sign in to comment.