Juho Vepsäläinen
Juho Vepsäläinen
I patched it up with a little check like this at **createCompiler.js** ``` javascript ... if(opts.config.entry) { entryConfig = entryConfig.concat(opts.config.entry); } // Building the output var outputConfig = _.merge( ......
@Yomguithereal Yeah, that would be the idea. I pushed all the entries to webpack configuration based on that so everything works now. I suppose at minimum kotatsu should give a...
Hi, Very good point! We started out using jswiki data as a basis for JSter but since then it has grown quite a bit. I recall we had somewhere around...
Hi, I made the message more neutral. Now it should be more clear jswiki is more of a community thing whereas jster.net is an opinionated alternative. Hope that helps!
This would be something kotatsu specific. If you detect a function, you would pass kotatsu configuration to the function so the user could alter and apply custom checks etc. on...
+1 Any progress with this? By the way as a workaround it would be awesome if relative paths worked. Seems to fail with good old `..`.
Take in count that if you are operating an API and use pagination, you'll need to hit the API each time column sort is applied (unless there is only one...
Mixins are problematic with ES6. There's a [little hack](https://github.com/brigand/react-mixin) but hacks are never nice. I expect implementing a HOC/decorator wouldn't be that difficult. I've [documented the approach](http://survivejs.com/webpack_react/react_and_flux/#extracting-connection-decorator). Hopefully that helps...
No worries. By the looks of it my docs have moved to [an appendix](http://survivejs.com/webpack_react/understanding_decorators/) since my previous comment. The book has seen a lot of work since. :+1: If you...
It would be handy if it was possible to customize this per column. Let's say you have a `Country` column, in that case you would probably like to offer a...