Kevin Malakoff

Results 28 comments of Kevin Malakoff

This fixes [issue 70](https://github.com/mastilver/dynamic-cdn-webpack-plugin/issues/70)

Thanks guys. Great information... Understood in principle, but it isn't really clear in practice for me yet! 1) Looking at the reference I have at hand: https://github.com/buz-zard/random/blob/master/electron-compile-1/package.json, it looks a...

Thank you. Based on your responses, I'll clarify my two problems: **1) how to split up a project across multiple package.json files for different targets** - look at how react...

Thank you for the responses. Let me see if I understand correctly. > 1) how to split up a project across multiple package.json files for different target > > >...

Thank you for the quick response. Related to your initial answer, I'll quickly elaborate on `I would prefer not to duplicate and manually synchronize the app folder and shared node_module...

I'm still interested in this if anyone else is.

I'm having a similar problem with a new Rails 3 project where we are evaluating JSON renderers using embedded engines (inside namespaces). I've tried: ``` config.view_paths

In the [demo code](https://github.com/kmalakoff/RABLEvalBug/blob/master/engines/my_engine/app/controllers/my_engine/application_controller.rb) that I submitted earlier, I was able to manually set the view_paths in my engine's application controller rather than using [rabl_init.rb](https://github.com/kmalakoff/RABLEvalBug/blob/master/config/initializers/rabl_init.rb): ``` module MyEngine class ApplicationController...

Thanks for looking into this. Putting require 'rabl' din't change anything for me. Stil not working. I think the [instructions](https://github.com/nesquena/rabl/wiki/Setup-rabl-with-rails-engines) could be clearer. I added the line to my initializer...

I found the same thing. This logic is incorrect: ``` accepts: function (input) { if (input[0] === '/') input = input.slice(1); return negatives[0].test(input) || !positives[0].test(input); }, ``` It should be...