Kevin S

Results 5 comments of Kevin S

+1 I'd find this very useful for upgrading an existing project.

I'm also affected by this issue. Removing the `module:` parameter works but then the plugin can't see my `requirements.txt` file as it's nested, so there's always going to be a...

I've found another temporary workaround using environment variables in `serverless.yml`: ```yaml functions: LambdaTestFunction: handler: ${env:HANDLER_PATH_PREFIX, ""}handler.handler module: src/test_lambda ... ... package: individually: true ``` When I invoke locally, I use...

@jamesoflol You're welcome, and thanks for raising the issue regarding relative imports. I tested it on my end and can confirm that I'm experiencing the same issue. I did some...