Sander van Hooft

Results 189 comments of Sander van Hooft

Thanks @RemiHin, Exactly what I was thinking, that's why I am prepping the patch release right now :)

Here you go: https://github.com/mollie/laravel-cashier-mollie/releases/tag/v2.5.4

No problem, loving this "lightweight" kickstarter pack so far. Looking forward to your mods.

Not an expert on that either, but the output mentiones the .scripts/mocha_boot.js is missing. [This may be an interesting example](https://github.com/mantrajs/meteor-mantra-kickstarter/blob/v0.2.1/.scripts/mocha_boot.js).

Perhaps. Could it be a version issue, a missing (babel) package or a load order? [meteor-mantra-kickstarter/packages.json](https://github.com/mantrajs/meteor-mantra-kickstarter/blob/v0.2.1/package.json) vs [this/packages.json](https://github.com/mantrajs/kickstart-mantrajs-webpack/blob/master/package.json) ? I am not really familiar with the babel packages family.

That's no problem. By default, it doesn't work from the src/public folder. I am hoping there will be a way to include public resources in Mantra modules, but it seems...

That would be really great, thank you! Still, I hope I can include this via Webpack inside a Mantra module :). Again, thanks!

Just to be sure: you mean [the npm meteor-webpack package](https://www.npmjs.com/package/meteor-webpack), right?

Hi, Why don't you want to go stateless?

Take a look at [this example](https://github.com/mantrajs/mantra-sample-blog-app/blob/master/client/modules/core/components/newpost.jsx), and how the `onClick` event is bound to the `createPost` function. There is no `` used. `This.props` is used instead of state. The `{create}`...