You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now SAM install dependencies through NPM. If the project makes use of alternative package managers (pnpm or yarn) this may cause issues since lock files may not be respected, leading to unpredictable builds. It would be nice to support alternative package managers as well.
Proposal
Recognise the package manager according to the file existing in the project (pnpm-lock / package-lock / yarn.lock) and use the appropriate tool
The text was updated successfully, but these errors were encountered:
SAM CLI does support custom builds via using Makefile. You should be able to use any package managers of your choice in that way. If you haven't done so I will recommend giving it a try to see how well it works.
In the meantime, I will keep this issue open for any future discussions.
Describe your idea/feature/enhancement
Right now SAM install dependencies through NPM. If the project makes use of alternative package managers (
pnpm
oryarn
) this may cause issues since lock files may not be respected, leading to unpredictable builds. It would be nice to support alternative package managers as well.Proposal
Recognise the package manager according to the file existing in the project (pnpm-lock / package-lock / yarn.lock) and use the appropriate tool
The text was updated successfully, but these errors were encountered: