Skip to content

Releases: serverless-heaven/serverless-webpack

3.1.2

11 Oct 08:37

Choose a tag to compare

Release notes

  • Fix issue where dependencies with dots in their names would not be installed #251

3.1.1

04 Oct 12:03

Choose a tag to compare

Release notes

  • Fix issue where locked dependencies (package-lock.json) were ignored #245
  • Updated dependencies and build/test/coverage tools

3.1.0

22 Sep 11:56

Choose a tag to compare

Release notes

  • Allow filesystem polling in watch mode (--webpack-use-polling) #215
  • Allow forced include of not referenced modules #217
  • Automatically include peer dependencies of used modules #223
  • Show explicit message if the provided webpack config can not be loaded #234
  • Improve examples #227
  • Update 3rd party provider compatibility table #221
  • Added automatic Travis and Coveralls builds to increase stability

3.0.0

09 Sep 22:12

Choose a tag to compare

Finally it's here - the new V3

Release Notes

  • Integrate with serverless invoke local #151
  • Support watch mode with serverless invoke local --watch
  • Stabilized and improved the bundling of node modules #116, #117
  • Improved interoperability with Serverless and 3rd party plugins #173
  • Support individual packaging of the functions in a service #120
  • Allow setting stdio max buffers for NPM operations #185
  • Support bundling of node modules via node-externals whitelist #186
  • Removed the webpack serve command in favor of [serverless-offline][link-serverless-offline] #152
  • Updated examples #179
  • Added missing unit tests to improve code stability
  • Fixed unit tests to run on Windows #145

2.2.3

09 Sep 21:49

Choose a tag to compare

Move to serverless-heaven

  • Changed all references in README and package.json to the new home

2.2.2

23 Aug 08:28

Choose a tag to compare

Release Notes

  • Reverted breaking change introduced in default output config #202

3.0.0-rc.2

22 Aug 13:39

Choose a tag to compare

3.0.0-rc.2 Pre-release
Pre-release

Release Notes

  • Fixed unit tests to run on Windows #145
  • Fixed issue with the elm-loader and shebang-loader #191
  • Restore compatibility with the Google provider plugin #199
  • Fixed issue when referring to the same handler file from multiple functions #195

2.2.1

21 Aug 14:58

Choose a tag to compare

Release Notes

  • Restore functionality for Google provider #193

3.0.0-rc.1

09 Aug 20:08

Choose a tag to compare

3.0.0-rc.1 Pre-release
Pre-release

This is the first release candidate for v3. Please test it thoroughly.

Special thanks to everyone who jumped into the pit and helped to reveil issues and stabilize the v3 branch 🥇

Release Notes

  • Integrate with serverless invoke local #151
  • Support watch mode with serverless invoke local --watch
  • Stabilized and improved the bundling of node modules #116, #117
  • Improved interoperability with Serverless and 3rd party plugins #173
  • Support individual packaging of the functions in a service #120
  • Allow setting stdio max buffers for NPM operations #185
  • Support bundling of node modules via node-externals whitelist #186
  • Removed the webpack serve command in favor of [serverless-offline][link-serverless-offline] #152
  • Updated examples #179
  • Added missing unit tests to improve code stability

2.2.0

28 Jul 10:07

Choose a tag to compare

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