trunk
trunk copied to clipboard
Build, bundle & ship your Rust WASM application to the web.
I would like to have a rust wasm file be a library which can be called into via JS, instead of it being automatically executed.
When an error occurs in Trunk, whether it's in the Rust compilation or a unresolved file, it would be great for Trunk to create an overlay in the generated html...
hi I have a yew project with npm package `material-components-web` as a dependency. now I use parcel to build the project. Does trunk support this dependency management? thx
As I've been hacking on a POC of the WASM+WASI plugin system, it seems quite clear that the level of effort is still quite high, and WASI and other standards...
Fixes #169 **Checklist** - [x] Updated CHANGELOG.md describing pertinent changes. - [ ] Updated README.md with pertinent info (may not always apply). - [ ] Squash down commits to one...
We currently have our own hierarchical config system. Works well, but extending it can be a bit tough, especially for new folks. If we cut over to https://github.com/mehcode/config-rs, we get...
I just spent a while to debug a bug caused by typing `data-trnk` instead of `data-trunk`, thanks to keyboard rollover of my laptop. Could we prevent this kind of mistakes...
As discussed in various locations, and most recently in #185, it would be beneficial to have Trunk use an asset build cache along with a hashing pattern to reduce the...
When a static file (eg. a `.scss` file) a rust build is triggered. Ideally, it should only trigger a sass build. This makes development a bit slower.
Let's say I want to call this function from JS: ```rust #[wasm_bindgen] pub fn send_example_to_js() -> JsValue { // ... } ``` in the `index.html` added this: ```html ``` and...