YAES
YAES copied to clipboard
Clean install issue
Hello again, sorry ran yarn dev and received the following log
[eleventy] Command exited with error code: Error: Command was killed with SIGABRT (Aborted): eleventy --watch
dyld: lazy symbol binding failed: Symbol not found: _g_once_impl
Referenced from: /Users/jamesgrubb/Dropbox/Dev/allornaught/node_modules/sharp/build/Release/sharp.node
Expected in: /Users/jamesgrubb/Dropbox/Dev/allornaught/node_modules/@11ty/eleventy-img/node_modules/sharp/build/Release/../../vendor/lib/libvips.42.dylib
dyld: Symbol not found: _g_once_impl
Referenced from: /Users/jamesgrubb/Dropbox/Dev/allornaught/node_modules/sharp/build/Release/sharp.node
Expected in: /Users/jamesgrubb/Dropbox/Dev/allornaught/node_modules/@11ty/eleventy-img/node_modules/sharp/build/Release/../../vendor/lib/libvips.42.dylib
▼ eleventy
dyld: lazy symbol binding failed: Symbol not found: _g_once_impl
Referenced from: /Users/jamesgrubb/Dropbox/Dev/allornaught/node_modules/sharp/build/Release/sharp.node
Expected in: /Users/jamesgrubb/Dropbox/Dev/allornaught/node_modules/@11ty/eleventy-img/node_modules/sharp/build/Release/../../vendor/lib/libvips.42.dylib
dyld: Symbol not found: _g_once_impl
Referenced from: /Users/jamesgrubb/Dropbox/Dev/allornaught/node_modules/sharp/build/Release/sharp.node
Expected in: /Users/jamesgrubb/Dropbox/Dev/allornaught/node_modules/@11ty/eleventy-img/node_modules/sharp/build/Release/../../vendor/lib/libvips.42.dylib
this seems to be caused by two different versions of sharp
being installed with incompatible versions of libvips.42.dylib
.
Try changing your sharp
dev dependency to: "sharp": "^0.25.4",
and then run yarn
I ran into this same issue and your suggestion fixed it for me! Thanks!