Tim Branyen
Tim Branyen
I'll look it over asap!
Looks good to me. Seems useful!
If it's easy to make that work, then I agree with that feedback. I'm actually really needing this now for a project at work so I can put some time...
Posted a PR fix here: https://github.com/statianzo/webpack-livereload-plugin/pull/33 it works perfectly with this configuration: ``` js }, { test: /\.css$/, use: ExtractTextPlugin.extract({ fallback: 'style-loader', use: { loader: 'css-loader', options: 'url=false&sourceMap', } })...
I published this to make it easier for folks to try in their own apps: ``` npm i [email protected] ``` I'll deprecate the package after this gets updated and merged.
@statianzo I've updated and rebased this PR. Let me know if you need anything else to merge.
I noticed this PR falls short when using glob patterns within other files. So for instance, I updated `somefile.css` that is embedded in `myapp.css` through a glob pattern. This code...
Seems like the test failures are around missing support in some of the APIs like `/commit`? Not sure why the Linux tests failed, maybe apt-get needs a retry mechanism. Pretty...
@wmertens https://libgit2.org/libgit2/#HEAD/type/git_stash_apply_options has a `checkout_options` option you can set to force: https://libgit2.org/libgit2/#HEAD/type/git_checkout_strategy_t There are quite a few options in: ```js require('nodegit').Checkout.STRATEGY STRATEGY: { NONE: 0, SAFE: 1, FORCE: 2, RECREATE_MISSING:...
Bummer, I think it could be fixed to work, but given this is meant for NodeGit I'm okay with the change.