Skip to content

Releases: serverless-heaven/serverless-webpack

5.8.0

26 Jul 03:59
e6bdbb1
Compare
Choose a tag to compare

Main changes

  1. We have added a new CLI option --skip-build which has the same behavior of the previous removed CLI option --no-build. That option allows to run a function with an existing compiled output. (see #1190)

  2. We have also properly defined CLI options to remove all errors like Detected unrecognized CLI options when using Serverless > v1 (see #1187)

What's Changed

New Contributors

Full Changelog: v5.7.1...v5.8.0

5.7.1

10 May 08:13
e5c12a3
Compare
Choose a tag to compare

What's Changed

Full Changelog: v5.7.0...v5.7.1

5.7.0

09 Apr 11:54
69cce54
Compare
Choose a tag to compare

Main changes

  1. @medikoo changed the output log when using Serverless v3, it's less verbose and more clean

    progress:
    Screenshot 2021-10-13 at 17 50 37

    success:
    Screenshot 2021-10-13 at 17 50 08

  2. We switch back to archiver instead of bestzip to ensure consistent artifact. The switch to bestzip was mostly for faster zip because it tend to use the native zip command instead of the one from Node.

  3. Support for NPM 8 was added by @moroine

What's Changed

New Contributors

Full Changelog: v5.6.1...v5.7.0

5.6.1

26 Jan 15:13
ca07a95
Compare
Choose a tag to compare

What's Changed

Full Changelog: v5.6.0...v5.6.1

5.6.0

22 Nov 11:51
de8475a
Compare
Choose a tag to compare

Detailed changes

  1. There is now a noInstall options in packagerOptions (for both NPM & Yarn) to skip deps installation during the Serverless package / deployment. If you enable that option, be sure packages are installed before.

    custom:
      webpack:
        packagerOptions:
          noInstall: true
  2. The --no-build CLI argument has been removed.
    You should now define it inside your Serverless configuration:

    custom:
      webpack:
        noBuild: true
  3. The --watch CLI argument has been improved and now works properly.

What's Changed

Full Changelog: v5.5.5...v5.6.0

5.5.5

18 Oct 12:28
4833a0f
Compare
Choose a tag to compare

What's Changed

New Contributors

  • @gwdp made their first contribution in #961

Full Changelog: v5.5.4...v5.5.5

5.5.4

08 Sep 07:35
a962787
Compare
Choose a tag to compare

This release include one fix (#953) when using serverless-webpack with webpack >= 5.52.0

5.5.3

01 Sep 07:43
5679961
Compare
Choose a tag to compare

This release include one fix (#944 thanks @mostthingsweb) when using sls deploy function --function=function-name for a function defined without an explicit runtime (that bug were introduced in 5.5.2).

5.5.2

26 Aug 14:27
dc4be8a
Compare
Choose a tag to compare

Here is a small release with few fixes.

  • Register serverless as peer dependency (#900 @medikoo)
  • Do not run webpack on a single non-node function (#879 @j0k3r)
  • Skip container function with uri defined (#877 @j0k3r)

5.5.1

10 Jun 08:02
033f504
Compare
Choose a tag to compare

Here is a small release with few fixes with one important improvement in memory usage when packaging function individually.

Thanks to contributors! 🤝