protoc-gen-es: fix missing node_modules directories (#339841)

This commit is contained in:
Felix Schröter 2024-09-09 14:17:55 +00:00 committed by GitHub
commit 7fa0c16b94
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -29,6 +29,13 @@ buildNpmPackage rec {
npm run --workspace=packages/protoplugin build
'';
# copy npm workspace modules while properly resolving symlinks
# TODO: workaround can be removed once this is merged: https://github.com/NixOS/nixpkgs/pull/333759
postInstall = ''
rm -rf $out/lib/node_modules/protobuf-es/node_modules/@bufbuild
cp -rL node_modules/@bufbuild $out/lib/node_modules/protobuf-es/node_modules/
'';
passthru.updateScript = ./update.sh;
meta = with lib; {