Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(type-safe-api): missing runtime modules in Lambda deployment (#815)
Fixes the issue where generated runtime modules were not packaged in the Lambda deployment, causing ImportModuleError when executing Python handlers. The fix modifies the packaging task in GeneratedPythonHandlersBaseProject to strip the '-e' flag from exported requirements.txt. This ensures runtime modules are installed as regular packages instead of editable installations. Changes: - Update 'poetry export' command to pipe output through 'sed' and remove '-e' prefix. - Update corresponding snapshot tests for new package task command. Fixes #791 Co-authored-by: Adrian Dimech <51220968+agdimech@users.noreply.github.com>
- Loading branch information