davesnx / styled-ppx

Type-safe styled components for ReScript, Melange and native with type-safe CSS
https://styled-ppx.vercel.app
BSD 2-Clause "Simplified" License
402 stars 33 forks source link

Fix Reason compilation error #508

Closed frekw closed 3 months ago

frekw commented 3 months ago

Builds on top of #507.

vercel[bot] commented 3 months ago

The latest updates on your projects. Learn more about Vercel for Git ↗︎

1 Skipped Deployment | Name | Status | Preview | Comments | Updated (UTC) | | :--- | :----- | :------ | :------- | :------ | | **styled-ppx** | ⬜️ Ignored ([Inspect](https://vercel.com/david-sanchos-projects-8c534635/styled-ppx/8nBUGiVEHXn2ECnbg2ZJA3NGSiVA)) | [Visit Preview](https://styled-ppx-git-fork-frek-c42d15-david-sanchos-projects-8c534635.vercel.app) | | Aug 20, 2024 7:24am |
frekw commented 3 months ago

Fixed by removing this Reason patch from my build via an overlay:


ocamlPackages = super.ocaml-ng.ocamlPackages_5_1.overrideScope' (
  oself: osuper: {
    reason = osuper.reason.overrideAttrs (o: {
      patches = [ ];
    });
}```