You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I installed babel-plugin-rewire modules to my project. npm install babel-plugin-rewire
And config the .babelrc plugin with "plugins": ["transform-object-rest-spread", "rewire"]
Now when I build the project, I see that the webpack bundle is increased dramatically (almost 2 MB)
From app.js 6.49 MB 0 [emitted] [big] app
To app.js 8.33 MB 0 [emitted] [big] app
Is this expected? Is there a way that I can use rewire so that I can test my private unit test and remove it from the webpack bundle?
The text was updated successfully, but these errors were encountered:
I installed babel-plugin-rewire modules to my project.
npm install babel-plugin-rewire
And config the .babelrc plugin with
"plugins": ["transform-object-rest-spread", "rewire"]
Now when I build the project, I see that the webpack bundle is increased dramatically (almost 2 MB)
From
app.js 6.49 MB 0 [emitted] [big] app
To
app.js 8.33 MB 0 [emitted] [big] app
Is this expected? Is there a way that I can use rewire so that I can test my private unit test and remove it from the webpack bundle?
The text was updated successfully, but these errors were encountered: