Tv
Tv
Using a separate build image and `COPY --from=build /app /` means that the final image cannot reuse layers that didn't change; that flattens the whole ~1 GB node_modules pile into...
It seems I am required to provide a `DatabaseConfig` with a `url`: https://github.com/keystonejs/keystone/blob/c396f16a77798852208e93c2a8bb4a07c04c3af5/packages/core/src/types/config/index.ts#L24 https://github.com/keystonejs/keystone/blob/c396f16a77798852208e93c2a8bb4a07c04c3af5/packages/core/src/types/config/index.ts#L56 Providing a dummy value if the environment variable is set is not desirable to me; I...
> To disable compiler warning put this inside `svelte.config.js` There's no `onwarn` property on type `Config`. https://kit.svelte.dev/docs/configuration The only places where the svelte or svelte-kit source trees say `onwarn` are...
Alright, `onwarn` resides in vite-plugin-svelte: https://github.com/sveltejs/vite-plugin-svelte/search?q=onwarn I see 8fc5e524b20bdcd1c3c0dbb27dd67d17db3377c4 that changed Javascript logic -- without changing the Typescript definition to allow arbitrary keys!
Please also add an explicit license. Right now Cargo.toml's say `license = "Apache-2.0"` (https://github.com/shuttle-hq/shuttle/search?q=license) but that isn't good enough for lawyers.
Maybe a dumb question: If each 2D triangle is already convex (by definition of triangle), what decomposition is needed? I think you can feed your triangles to e.g. `Collider::trimesh` and...
I have observed a case with `bevy_rapier2d` where I can hit a fixed `Collider::trimesh` (or same-shape `Collider::compound` made of either `Collider::convex_polyline` or `Collider::convex_hull` triangles) and if I hit it at...
Potential other reports similar to what I'm experiencing, "passing through the seams": - https://github.com/dimforge/rapier/issues/182 - https://github.com/dimforge/rapier/issues/165
My use case: My game has no gravity, but I made the player object have magnetic parts that cling to the nearest metal surface (with simplified physics of only considering...
Well, it doesn't work, and I did: #1170.