Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,7 @@ updates:
- dependency-name: fs-extra
versions:
- ">= 10.0.0"
# require node > 10
- dependency-name: mocha
versions:
- ">= 9.0.0"
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,22 @@
# Change Log

* 5.5.1
* chore: use processedOptions ([#834][] @CorentinDoue)
* Reduce memory usage by releasing webpack stats objects after compile ([#858][] @janicduplessis)
* (fix) allow boolean or number values in slsw.lib.options ([#857][] @coyoteecd)
* Fix packaging for non-node functions ([#876][] @FatalTouch)

[#834]: https://github.com/serverless-heaven/serverless-webpack/pull/834
[#858]: https://github.com/serverless-heaven/serverless-webpack/pull/858
[#876]: https://github.com/serverless-heaven/serverless-webpack/pull/876
[#857]: https://github.com/serverless-heaven/serverless-webpack/pull/857

* 5.5.0
* Add ability to specify the node_modules relative dir ([#689][] @ypxing)
* Fix the spawn E2BIG error when zipping ([#813][] @j0k3r)
* Extends the --no-build option to serverless offline start ([#770][] @nponeccop)
* Add Serverless Container Support ([#723][] @rogersgt)
* Add support for Yarn network-concurrency option ([#550][] @cfroese )
* Add support for Yarn network-concurrency option ([#550][] @cfroese)

[#689]: https://github.com/serverless-heaven/serverless-webpack/pull/689
[#813]: https://github.com/serverless-heaven/serverless-webpack/pull/813
Expand Down
18 changes: 6 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "serverless-webpack",
"version": "5.5.0",
"version": "5.5.1",
"description": "Serverless plugin to bundle your javascript with Webpack",
"main": "index.js",
"types": "index.d.ts",
Expand Down Expand Up @@ -83,5 +83,8 @@
},
"optionalDependencies": {
"ts-node": ">= 8.3.0"
},
"engines": {
"node": ">= 10.12.0"
}
}