Daniel Ennis
Daniel Ennis
In the meantime, I have a pending PR to node-discover (upstream) that will reduce the cpu cost pain of all the additional packets: wankdanker/node-discover#39
FYI this line and maybe more will be an issue with my cache pr: https://github.com/dashersw/cote/blob/master/src/components/responder.js#L27 as it mutates the object directly instead of using the .advertisement() method.
@charliedowler I think if you set flow as a peerdep instead of a dep that would help a lot, to not need to even update this much. Can you least...
I did fork it for now to update this for anyone who needs: https://github.com/aikar/gulp-flowtype/commit/64d8326d060c497ecff3f979f88a68ecadda68c9
@fk-hb yarn add flow to your project. You have it in your folder from previous build, but if you wiped out node_modules, you would have a broken build.
@rstrand note there is a behavior change in this implementation, in that currently the moment object that's been passed in gets mutated vs cloned. Now, i dont know if the...
Since node_modules is commonly ignored in webpack, i would suggest including this as the example for CSS ```require("style-loader!css-loader!input-moment/dist/input-moment.css");``` for webpack users, to ensure it gets loaded the same way w/o...
There was a PR opened on Jun7 linked ^ that added this. I went ahead and pulled the functionality to a fork as I needed this now and couldn't wait:...
@loganfsmyth no it is not. Let me clarify my request more. I want ``` import("foo"); ``` to translate to ``` require.ensures([], (require => { resolve(require("foo")) }, "foo"); ``` Relative path...
simply resolving to relative paths to {dirname}_{filename} as its chunk name would be the simplest solution (and keeping import("module") as "module") No changing of the spec for import() call itself,...