-
Notifications
You must be signed in to change notification settings - Fork 16
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
Compile dependencies in node_modules #212
Comments
Would this support symlinked packages? Right now, I am compelled to compile my library because when/how are |
Theoretically it should support symlinked packages as its just taking the source code and compiling it on its own in webpack. For Science this is where we say all deps that start with We have started taking steps to compile our mono repos. |
So are newer formik-based Keep in mind that you might have to define webpack ...
modifyWebpackConfig: webpackConfig => {
webpackConfig.resolve.alias = {
'formik': path.resolve('./node_modules/formik'),
'react': path.resolve('./node_modules/react'),
'react-dom': path.resolve('./node_modules/react-dom')
};
return webpackConfig;
}
... |
Ah I see where you are coming from now. Yes we do plan on compiling those packages as well. Most likely it will be using the same babel script used to compile the sdk stuff. |
We are using Typescript + RollupJS and I was not sure it would pay off moving to |
@GoPro16 remember this? I think it could be tracked here. I have just started a new project using I tried using |
Hmmmm, okay I went ahead and disabled the |
It works in IE now, but I had to run |
Right upgrade is just used for jumping major versions. We need to update it again but the main goal was for upgrading the workflow dev dep and not fixing your dependencies although that would be neat 😄 |
All right, I did not know that. Duly noted.
I mean, it could generate discussion about how invasive is fixing project dependencies, but I feel like Situations like this one, where a new |
More libs are being written using syntax that is not compatible with certain browsers (IE11). The toolkit should compile everything from
node_modules
. LeverageRule.oneOf
(likecra
) and then close #98.The text was updated successfully, but these errors were encountered: