We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
module
1 parent 4c57634 commit 36a469bCopy full SHA for 36a469b
index.js
@@ -115,7 +115,18 @@ class ServerlessPythonRequirements {
115
this.serverless = serverless;
116
this.servicePath = this.serverless.config.servicePath;
117
this.warningLogged = false;
118
-
+ if (
119
+ this.serverless.configSchemaHandler &&
120
+ this.serverless.configSchemaHandler.defineFunctionProperties
121
+ ) {
122
+ this.serverless.configSchemaHandler.defineFunctionProperties('aws', {
123
+ properties: {
124
+ module: {
125
+ type: 'string',
126
+ },
127
128
+ });
129
+ }
130
this.commands = {
131
requirements: {
132
commands: {
0 commit comments