likeablob
likeablob
Hi folks, FYI I wrote a thin wrapper of ulptool for PlatformIO, though it's more like a workaround rather than solution. https://github.com/likeablob/ulptool-pio/tree/feat-pio-integration
@maxgerhardt @Nagymadar Hi, sry for the late reply, and I should have mentioned that I haven't tested it on Windows. (I'm on Ubuntu.) As @maxgerhardt suggested, the root cause probably...
As an ugly workaround, I ended up using the following `now-build`. ```bash $ wget https://github.com/jwerre/node-canvas-lambda/raw/master/canvas-lib64-layer.zip $ unzip -j -d canvas_lib64 canvas-lib64-layer.zip ``` ```package.json { "scripts": { "now-build": "cp canvas_lib64/*so.1 node_modules/canvas/build/Release/"...
@shawninder I guess that's because your project is missing a `next build` command since `now-build` overrides a `build` script. > When ZEIT Now encounters a package.json file with both build...