Clemens Koza
Clemens Koza
> because the test configuration depeneds on main, all your classes in main are already available to test Yes, but the protos aren't. If I skip `testProtobuf fileTree("src/main/proto")`, I get...
Thanks for the response, adding the includes worked as I expected, so that's definitely a workaround for now. I did it in the least flexible way possible - only for...
My use case was to implement a servo arm. What I ended up doing was to add two revolute constraints; one for the pivot point (like flukeout) and one farther...
same here; took me a while to find the culprit. In detail, I have a setup like this: ``` const link = from([ stateLink, // withClientState(...) errorLink, // onError(...) ...(__DEV__...
@MirrorBytes maybe you could help me out here? I basically did what you're suggesting by following [this setup](https://www.reddit.com/r/sveltejs/comments/mg9h6t/latest_greatest_combo/), once with `--jit` and once without. I then installed smelte as a...
thank you for the quick and comprehensive help!! fyi, it did not work with `--jit` - that automatically purges the styles and still makes problems, I'll investigate that.
So I wasn't so far off with adding `'./node_modules/smelte/src/**/*.{html,js,svelte,ts}'` to `purge.content` in `tailwind.config.cjs` - tailwind-jit will scan all components for classes they are using - this is a simple string...
yes, that is what I discussed [above](https://github.com/matyunya/smelte/issues/230#issuecomment-812898384); it's not too pretty...
I recreated the project using these commands ``` npm init rust-parcel hello-web2 cd hello-web2 npm install ``` then applied the following changes (i.e. add the `js/helper.js` file, add the `wasm_bindgen`...
Unfortunately still the same, both on `master` and `0.0.2`. I take it it's not reproducible on your end?