Mario Volke

Results 19 comments of Mario Volke

1) Look at the extended KSS syntax kss-node is using to generate the styleguide: https://github.com/hughsk/kss-node 2) I think it should be good practice to keep modules small and to split...

@fregante this doesn't work as expected. When you e.g. try to exclude "b" in a series of a, b, c. It also doesn't execute "c".

Extending via `@extend` is quite a nice idea, simple and nice syntax I don't like the idea to utilize preprocessor syntax because this makes you much more dependent on the...

+1 We need a way to validate without changing the state of the component (in a true functional way) as proposed with the `silent` argument.

Unfortunately I discovered that the silent flag doesn't even solve our problem. Since the validate function is async I don't really know where to put it in the lifecycle of...

We could do basically the same as Joi does by letting `validate()` only behave async if a callback is provided and otherwise use the sync version. This way we wouldn't...

Run into the exact same problem. Seems like quite a heavy hack for such a simple use case.

`stopPropagation` should always be considered harmful, because other components on a page cannot react to a click anymore.

Ok I understand. Its just that we were coming from _beefy_ and wanted to transfer our dev workflow to _budo_. Beefy supports multiple entry points but the live reloading of...

I did some research, and beefy indeed starts multiple instances of `watchify` when provided with multiple entry points. It does not explicitly handle duplicate modules between the two bundles (I...