Skip to content

2.2.0

Compare
Choose a tag to compare
@HyperBrain HyperBrain released this 28 Jul 10:07
· 2559 commits to master since this release

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'
  ...
}