Joep Meindertsma
Joep Meindertsma
Can you commit + push + open a draft PR @Polleps? @AlexMikhalev and me would also like to see the progress in this!
# release-plz - Only supports Rust, which could be too much of a problem - @AlexMikhalev had some experience with this, it apparently creates commits that contains the build outputs......
## Release-please - I tried a bit in #961, haven't gotten it to work so far.
## [Changesets](https://github.com/changesets/changesets) also has a [rust crate ](https://crates.io/crates/changesets) that creates the changeset files, but doesn't bump rust crates. For that, we need something like ## Knope Uses Changesets to automate...
Skipping the check in `build.rs` works, lowers refresh time from 7 seconds to about 2 seconds. ```rust // Check if we're likely running in a check-like context let opt_level =...
New solution: ```rs println!("cargo:rerun-if-changed=build.rs"); // Env is set in .vscode/settings.json when rust-analyzer runs let is_rust_analyzer = !std::env::var("IS_RUST_ANALYZER") .unwrap_or_default() .is_empty(); if is_rust_analyzer { p!("Skipping build.rs logic to keep cargo check/clippy fast....
Seems like JSON fields are supported in `FuzzyTermQuery` since 0.22 https://github.com/quickwit-oss/tantivy/pull/2173 !
Turns out we already have one in `CrashPage.tsx`! Should probably merge with `ErrorPage`
Doesn't reproduce in tests apparently
```astro --- /** * A wrapper component that enables alt+click editing functionality for Atomic Data resources. * When holding Alt, the wrapped content will show an outline and clicking will...