-
Notifications
You must be signed in to change notification settings - Fork 174
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature] pnpm support #1150
Comments
As @lwyj123 wrote you can workaround this with extending github action step env:
PRE_BUILD_COMMAND: npm install -g pnpm
CUSTOM_BUILD_COMMAND: pnpm install && pnpm run build |
I seem to be having issues with this workaround in a bitbucket pipeline due to the pnpm cache.
Hoping it can get some attention |
Any updates here? Many OSS projects switched to PNPM and Oryx should have native support for detecting and using it. |
We're not currently looking to support pnpm. Closing this issue for now, please create a new issue and link to this one if you feel strongly. |
That is really unfortunate as it means that Oryx cannot be used for the majority of modern JS/TS projects. I appreciate the feedback anyway, as we have now a clear position and can look for alternatives. Are there any plans to remove the dependencies of some of the Azure related GitHub actions (App Service, Azure Functions and Static Web Apps for example) on Oryx, so they are not blocking users from using the services with their applications that use pnpm @simonjj ? |
Would it be possible instead to use |
Feature Request
I found the nodejs build document but didn't find pnpm support. now I use
PRE_BUILD_COMMAND
andCUSTOM_BUILD_COMMAND
for this but it's good that Oryx could have official support likeyarn
andlerna
The text was updated successfully, but these errors were encountered: