Cas du Plessis
Cas du Plessis
I have now tested with the "**Download Bundle**" option, and then it works.
After closer inspection, although the build and download runs without error, all the extension folders are empty. I got things working, by using customizer to create a custom base bulma...
I have now tested my approach, and the two step build works as expected. I am just not sure if the dev server will work in the same way.
I think I have finally figured this out. - I have changed all my presto markup files, from `index.html` to `index.pres` - this is to ensure that nodemon listens for...
What would be ideal, is to have a rollup/vite plugin. Then presto could become part of the normal build/serve chain.
Thanks for the detailed reply, @stephancasas! Yeah, I've done a proof-of-concept with alpine component logic. Also using Rollup to build and package. So, the release of Snowblade came at the...
Thanks again, @stephancasas! So, I finally got some time to work on this again. This is the draft model I came up with: My components are organised like this: ```...
@stephancasas, here's the first draft of my planned boilerplate: https://github.com/go4cas/wasp-template. Some feedback would be great, please.
@kkyouhei ... something like this: `Employee` model: ```javascript static fields () { return { id: this.increment(), name: this.string(''), apps: this.belongsToMany(App, EmployeeApp, 'employeeId', 'appId') } } ``` `App` model: ```javascript static...
For now, I've managed to get this working, by using ``: ``` html {{cellCurrencyFormat(value)}} ``` With the `cellCurrencyFormat` wrapper function local to the custom element.