-
Notifications
You must be signed in to change notification settings - Fork 230
Is this plugin compatible when using multiple runtimes? #43
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
Comments
stumbled into the same issue when trying to use two runtimes, any updates or solutions/workarounds? |
I did not solve this issue or find a workaround. At some point I was planning on compiling manually to avoid this issue, but just haven't had a big need to do it. Still think this lib is the bees knees if not using multiple runtimes :) |
Also ran into the same issue. Exclude doesn't seem to do anything. |
Running into the same issue! I think this issue prevents usage of: https://github.com/svdgraaf/serverless-basic-authentication as it requires some python |
Same issue here. When trying to run |
super ugly hack, but just because there is no workaround listed here yet... patch
and then add |
@bobzoller thanks a lot for the hack! Thanks to your comment I found how to avoid this problem without any changes of the TS compiling successfully done if I creates a same name It means, I have a function config in the
And two files Python:
TS:
And it helps to avoid the compilation failture |
Hi @serp-ya and @bobzoller , with your hack TS compiling successfully, but lambda contains only js file. Thanks, |
@Cittadini I'm not sure why it happened on your side but my lambda works fine with python code... Above I shown a my Lambda configs and it contains important line I hope it will helps you. P.S. And not forget to describe what is a function will need to use for a Lambda deploy. I use a |
Hi @serp-ya thanks for your tips. Thanks, |
This is fixed now in master, fixed by PR #277 |
I ran into the error I was using |
Heya. First off just wanted to say this plugin made my life a whole lot easier by not dealing with compilation configuration :)
The current issue I am running into is that I wanted to add a python lambda alongside my typescript lambdas. Regardless of my tsconfig / serverless.yml I can't seem to prevent serverless-plugin-typescript from trying to compile my python functions.
If you think this is NOT an issue with
serverless-plugin-typescript
I am happy to investigate more, but my current understanding is that this seems to be the culprit since I don't expect it to be jumping into my non-typescript folders.If you think this is an issue that is easily fixable I am happy to dive in, but I just wanted to make sure I wasn't missing something and any direction you might provide before I do so.
My current layout is the following
tsconfig
serverless.yml (couple things omitted for privacy
Error
The text was updated successfully, but these errors were encountered: