Craig Mulligan

Results 33 comments of Craig Mulligan

Hey @Cretezy, I'm still seeing this behaviour in `0.7.2`. Haven't had anytime to look at the code but give me a shout if I can help with debugging.

Thanks for the suggestion. Omelette does look like a neat lib to use. Happy to accept a PR if anyone is up for adding it.

I'm seeing the same issue. Defaults overwrite the persisted cache when a global config of `cache-and-network` is set.

Sounds good :) Probably a different thread but how would you expose it via the CLI? something like: ``` env add [value] [value2] ``` Asking as this request was initiated...

It may also be nice to just pass a json file. ``` resin env add --file env.json ```

I actually like the current implementation as delegates the responsibility of the message acknowledgement and error handling to the middleware which I find neater. For example, I have some errors...

@phoenixbox you're example doesn't seem to use handlebars-helpers? I've tried registering with the `handlebars/runtime` ``` require('handlebars-helpers')({ handlebars: require('handlebars/runtime') }); ``` But webpack throws a bunch of errors aliasing explained [here](https://github.com/wycats/handlebars.js/issues/1174)...

Hey All, So I managed to register helpers individually by forking and then altering the export from the loader. This is how I did it. ``` var helpers = require('handlebars-helpers')();...