Tom Sherman
Tom Sherman
Yep! I'll come back around to this in a few days, sorry should have marked the PR as WIP - will do that now.
@bartlomieju I don't think I'm going to be able to complete this, I'm having serious trouble building the project on my current machine. Going to close this PR so someone...
Working on the edge cases in my PR, do we want to support creating a new color range by selecting a stroke color when you don't have a range selected?...
Ok I think google docs-like behaviour is what we want. This is how both miro and figma works even though it's a change in current behaviour.
For me none of the above solutions worked but this SO answer did: https://stackoverflow.com/a/51666714 I'm using `ts-node` + `nodemon` but maybe there's a similar option for `ts-node-dev`. I added `--files=$PATH_TO_NEXUS_TYPEGEN`...
I have the following Dockerfile but I get an error, running on M1 MacOS: ```Dockerfile FROM node:18 RUN apt-get update && apt-get -y install libc++-dev libunwind-dev WORKDIR /app RUN npm...
@frafra I tried that, same error: ```dockerfile FROM node:18 RUN apt-get update && apt-get -y install libc++1 libunwind8 WORKDIR /app RUN npm install workerd COPY workerd.capnp worker.js health-check.js ./ CMD...
I haven't written out everything I've tried, all of the changes to dockerfiles would probably blow through the character limit on a GitHub comment. I have of course tried your...
Ah, adding `libunwind-13` gives me a different error: ``` /app/node_modules/@cloudflare/workerd-linux-arm64/bin/workerd: /lib/aarch64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found (required by /app/node_modules/@cloudflare/workerd-linux-arm64/bin/workerd) /app/node_modules/@cloudflare/workerd-linux-arm64/bin/workerd: /lib/aarch64-linux-gnu/libc.so.6: version `GLIBC_2.33' not found (required by /app/node_modules/@cloudflare/workerd-linux-arm64/bin/workerd) /app/node_modules/@cloudflare/workerd-linux-arm64/bin/workerd: /lib/aarch64-linux-gnu/libc.so.6: version...
💯 for static binaries. This is something Deno got sooooo right.