2.2.0
Bugfix/Feature release
- Allow full dynamic configurations #158
- Fix a bug that prevented the entries lib export to work with TypeScript #165
If you already switched to use lib.entries
and use output to define the output filename, you should now add the file extension to the definition:
const slsw = require('serverless-webpack');
...
entry: slsw.lib.entries,
output: {
...
filename: '[name].js'
...
}