Manuel
Manuel
Another Update: seems the above update was just me being weird. It seems like the issue might be rather simple: the mod is for 1.19, 1.19.2, ... but has dependencies...
Hm... Added a new version that is only for 1.19.2 and with the correct dependencies, cleared the caches, and now it seems to be working... Only that the optional dependency...
:+1: @gzuidhof Could be merged? :)
In your case the problem seems to be that your browser doesn't support JavaScript ES6 syntax. ("Unexpected token 'const'") This might be the reason, too: https://caniuse.com/#feat=intersectionobserver Safari doesn't support the...
I figured out now that most of the custom patches are not necessary if you just overlay the default nodejs package: ```nix overlays = [ (self: prevPkgs: { nodejs =...
I adapted my taskfile to just print the image ref to `./result` - so I can ``` docker run $(cat result) ``` But I guess that doesn't quite fit a...
Found that I can set: ```nix nix2container.buildImage { tag = "latest"; ``` and then `docker run image:latest` is this good practice? Not sure what other gotchas this might have :thinking:
Related: https://github.com/ucan-wg/ts-ucan/issues/105 Also, the whole landing page is still describing v0.8 - not only the validator: 
Encountered this today, still reproducible: https://hyrious.me/esbuild-repl/?version=0.14.23&b=e%00a.js%00import+%7B+x+%7D+from+%22.%2Fx.js%22&b=e%00b.js%00import+%7B+x+%7D+from+%22.%2Fx.js%22&b=%00x.js%00export+var+x+%3D+1&o=%7B%0A++%22bundle%22%3A+true%2C%0A++%22format%22%3A+%22esm%22%2C%0A++%22splitting%22%3A+true%2C%0A++%22treeShaking%22%3A+false%2C%0A++%22outdir%22%3A+%22%2F%22%2C%0A++%22allowOverwrite%22%3A+true%0A%7D
It took me a while to figure out how to use `rawConfig`? So here's a gist for someone looking (and a request to make it simpler :sweat_smile: ): ```nix pre-commit...