-
NPM SetupWhen I was using npm directly with package ts-proto I was able to access bin scripts as they recommend:
Specifically the Attempted Yarn SetupI'm trying to figure out how to replicate this under Yarn 3 PnP. So far I've tried:
However, this only gives me access to the file that begins with Any ideas on how I could get access to the .cmd script? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
I found it's possible to use the Specifically within a powershell script I do something like this:
Which I then pass to protoc. |
Beta Was this translation helpful? Give feedback.
-
Getting the path to the shellscripts isn't a use case we officially support. At the moment those shellscripts are created only for the duration of the |
Beta Was this translation helpful? Give feedback.
I found it's possible to use the
BERRY_BIN_FOLDER
environment variable within a script underyarn run
to have access to the temp folder with the bin files and wrapper (.cmd) scripts.Specifically within a powershell script I do something like this:
Which I then pass to protoc.