Brian Lai
Brian Lai
If you run this under `nvm`, I think it will give you the folders in `nvm` as well? I installed `nvm` a while back, but I found a system variable...
@david-driscoll Thanks for the quick response. I am exploring this project in hope that I can help down the line. I use [nvm](https://github.com/creationix/nvm) so my node_modules dir would be this...
I ran into the same problem. After some debugging, I found that the dynamic importing of knex.js and sequelize.js isn't the same. While both are dynamic import depending on the...
BTW, I found the work around [in here](https://github.com/sequelize/sequelize/issues/9608). Basically Sequelize config accepts a `dialectModule` option, which would allow webpack to work around the dynamic import issue. Here's some code fragments...
understood, I will clean up the format later today for review. It was past midnight when I did the first PR, should have do it with a better timing :)
@iamdarrenhall I reverted back the code style manually (as much as I can). Please let me know if you see any issue. I'd recommend setting up a code style guide...
@iamdarrenhall I saw your did some commits that fix some of the same issues I fixed here, have you considered merging this in any time soon?
How would you like the object look like? e.g. ``` json { "glob": "foo/**.html", "options": { ... } } ```
@SBoudrias BTW, this could be a breaking change too. ``` js // before copy('foo/**', 'bar', { globOptions: { dot: true } }); // after copy({ glob: 'foo/**', options: { dot:...
> I don't see how this will conflict with the old behavior. For `copyTpl`, this is new, but for `copy`, this is different than before. I guess we can support...