creynders

Results 39 comments of creynders

And it has no trouble finding any of the other modules? I've been using konfy with webpack w/o any problems. Haven't tried out with gulp-webpack yet though.

Maybe something like this: ``` js nodeunit:{ tests : { values : { foo : 'bar' }, options:{ //options } } } ``` In which case `foo` would be injected...

Mutable container labels would be _really_ handy. I'm using [traefik](https://traefik.io/), a reverse proxy, which automatically detects docker containers and reads traefik-namespaced container labels for automatic configuration. Setting a label on...

What does your gruntfile.js look like?

Ah, I have a major deja vu, probably we discussed (or I listened in on a discussion about) this a while back. Though I agree that interfaces aren't _the_ way...

@dotdotcommadot Yeah, I realize my original post wasn't clear enough. I know it's possible to avoid all of that using the correct compiler options. I'm looking at it from a...

Yeah, I think there's a use case for passing the results to `post` middleware. However, this should definitely not be the default. Question is: how should the enabling look like?...

To elaborate a little: once you allow middleware to manipulate which parameters are passed on to the next middleware you'll enter the twilight zone. The problem is that it's an...

@mattapperson but that's already the case, the hook provider simply needs to provide it explicitly: ``` js instance.pre('whatever', function(accumulator, next){ accumulator.foo = { name: 'foo' }; next(); }); instance.pre('whatever', function(accumulator,...

There's a number of problems with that approach: 1. grappling-hook isn't meant for handling requests specifically 2. even if it were I have no way of _knowing_ what `origRequest` or...