Fionera

Results 218 comments of Fionera

You can now provide a custom VITE_ENTRYPOINT Env var to provide a custom index.html. Is that enough?

We still want a way to provide hooks, keeping this open

I have a local patch that hacks in a flag for overriding the source path of a module. It's basically how rules_go handles it. ``` From 6cb1507fb5da5dec56877859ecd3e269777c99a9 Mon Sep 17...

After some discussion with @mvdan we came to the conclusion that something like this in the CUE_REGISTRY would be a good fit: `#file: {modulePaths: [#versionedModulePath]: {path: string}}`. `#versionedModulePath` would like...

``` load("@bazeldnf//:deps.bzl", "rpmtree") load("@rules_oci//oci:defs.bzl", "oci_image", "oci_load", "oci_push") rpmtree( name = "sandbox", rpms = [ "@binutils-0__2.41-38.fc40.x86_64//rpm", "@binutils-gold-0__2.41-38.fc40.x86_64//rpm", ], symlinks = { "/usr/bin/ld": "/usr/bin/ld.bfd", }, visibility = ["//visibility:public"], ) oci_image( name =...

rpm2tar writes its symlinks ( https://github.com/rmohr/bazeldnf/blob/main/cmd/rpm2tar.go#L64 ) before the actual files from all rpms. But because the collector doesn't know that the symlinks are written (they get directly add to...

With some more digging, it is already corrupted inside the EFI vars. ``` init I reading "dump-type7-0-0-1734294273-D" in "cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0" init I "\xcc": cc ```

This happens because of a hard-limit in https://github.com/DropMorePackets/haproxy-go. Is there any special reason you have buffers that big? It would be possible to support but I never heard about someone...

Afaik the buffer size is only required to be bumped if you are working with said data in haproxy. But yeah it is already configurable but it does that automatically...