-
Notifications
You must be signed in to change notification settings - Fork 417
Description
This is a Feature Request
Description
This was originally a bug entry, but it turned out that dynamic requires can easily be added as feature.
See #266 (comment)
For bug reports:
-
What went wrong?
Upgrading serverless-webpack from v2 from v3 throws an error from a perfectly valid webpack.config.js.This is happening because Instead of using the typical
entry: slsw.lib.entriesin webpack.config.js, I have changed the entry toentry: addDynamicRequire(slsw.lib.entries). In a nutshell, I'm adding 'babel-polyfill', 'source-map-support/register' in webpack.config.js to avoid the need of adding these two requires in all of my handlers. -
What did you expect should have happened?
serverless-webpack should not restrict the contract of webpack.config.js. or make it explicit in the documentation
-
What was the config you used?
serverless.yml
package individually: true -
What stacktrace or error message from your provider did you see?
Not sure what this means
Similar or dependent issue(s):
- None
Additional Data
-
More references:
https://webpack.js.org/concepts/entry-points/
https://stackoverflow.com/a/33396110/2464295 -
Serverless-Webpack Version you're using:
3.1.2 -
Webpack version you're using:
3.5.5 -
Serverless Framework Version you're using:
1.23.0 -
Operating System:
OS X 10.10.5 -
Stack Trace (if available):
Type error:
Type Error ---------------------------------------------
Path must be a string. Received [ 'babel-polyfill',
'source-map-support/register',
'./packages/core/src/alexa-skill.js' ]
For debugging logs, run again after setting the "SLS_DEBUG=*" environment variable.
Stack trace:
Stack Trace --------------------------------------------
TypeError: Path must be a string. Received [ 'babel-polyfill',
'source-map-support/register',
'./packages/core/src/alexa-skill.js' ]
at assertPath (path.js:28:11)
at Object.relative (path.js:1248:5)
at entryFunctions._.flatMap (/Users/ceilfors/github/realtime-ww2-alexa/node_modules/serverless-webpack/lib/validate.js:154:28)
at /Users/ceilfors/github/realtime-ww2-alexa/node_modules/lodash/lodash.js:3554:27
at /Users/ceilfors/github/realtime-ww2-alexa/node_modules/lodash/lodash.js:4944:15
at baseForOwn (/Users/ceilfors/github/realtime-ww2-alexa/node_modules/lodash/lodash.js:3001:24)
at /Users/ceilfors/github/realtime-ww2-alexa/node_modules/lodash/lodash.js:4913:18
at baseMap (/Users/ceilfors/github/realtime-ww2-alexa/node_modules/lodash/lodash.js:3553:7)
at map (/Users/ceilfors/github/realtime-ww2-alexa/node_modules/lodash/lodash.js:9571:14)
at Function.flatMap (/Users/ceilfors/github/realtime-ww2-alexa/node_modules/lodash/lodash.js:9274:26)
at ServerlessWebpack.validate (/Users/ceilfors/github/realtime-ww2-alexa/node_modules/serverless-webpack/lib/validate.js:153:31)
From previous event:
at PluginManager.invoke (/Users/ceilfors/.nvm/versions/node/v8.1.2/lib/node_modules/serverless/lib/classes/PluginManager.js:360:22)
at PluginManager.run (/Users/ceilfors/.nvm/versions/node/v8.1.2/lib/node_modules/serverless/lib/classes/PluginManager.js:391:17)
at variables.populateService.then (/Users/ceilfors/.nvm/versions/node/v8.1.2/lib/node_modules/serverless/lib/Serverless.js:99:33)
at runCallback (timers.js:800:20)
at tryOnImmediate (timers.js:762:5)
at processImmediate [as _immediateCallback] (timers.js:733:5)
From previous event:
at Serverless.run (/Users/ceilfors/.nvm/versions/node/v8.1.2/lib/node_modules/serverless/lib/Serverless.js:86:74)
at serverless.init.then (/Users/ceilfors/.nvm/versions/node/v8.1.2/lib/node_modules/serverless/bin/serverless:39:50)
at <anonymous>