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
WARNING: More than one matching handlers found for 'built/methods/registerDevice'. Using 'built/methods/registerDevice.js'.
I'm guessing this is because Typescript has included registerDevice.js and registerDevice.js.map.
serverless-webpack added a feature to exclude files via config, but I cannot use this, as custom/bundle and custom/webpack config sections are not compatible.
How do I get rid of this warning?
The text was updated successfully, but these errors were encountered:
I'm also seeing this warning because I have handler.ts and handler.test.ts. Same as this issue in serverless-webpack. Which lead to this feature request which in turn lead to the PR linked in OPs issue.
Thanks, this is handy, but for my project Typescript generates .d.ts files for type information as well as .map source maps. I would need access to the excludeRegex option from serverless-webpack to make this work. But currently it's being hard-coded to /bundle_stats\.(html|json)$/
I'm getting this warning when deploying:
WARNING: More than one matching handlers found for 'built/methods/registerDevice'. Using 'built/methods/registerDevice.js'.
I'm guessing this is because Typescript has included registerDevice.js and registerDevice.js.map.
serverless-webpack added a feature to exclude files via config, but I cannot use this, as custom/bundle and custom/webpack config sections are not compatible.
How do I get rid of this warning?
The text was updated successfully, but these errors were encountered: