Skip to content

Commit

Permalink
Prepared release of 5.3.0
Browse files Browse the repository at this point in the history
* Updated dependencies, silenced last eslint warning.
* Dependency updates removed several security issues shown
by npm audit.
* Update version to 5.3.0
* Updated release notes
* Added some release notes
  • Loading branch information
Frank Schmid committed Apr 30, 2019
1 parent 9550751 commit 2a5b05f
Show file tree
Hide file tree
Showing 5 changed files with 3,136 additions and 3,070 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2016-2017 Nicola Peduzzi / Frank Schmid
Copyright (c) 2016-2019 Nicola Peduzzi / Frank Schmid

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -756,6 +756,13 @@ me to take it over and continue working on the project. That helped to revive it
## Release Notes
* 5.3.0
* Restore compatibility with TypeScript [#449][link-449] [#465][link-465]
* Use colored output depending on tty [#480][link-480]
* Allow to keep webpack folder [#453][link-453] [#467][link-467]
* Add ability to exclude files from handler lookup [#433][link-433]
* Documentation fixes [#429][link-429]
* 5.2.0
* Show info message in verbose mode if aws-sdk has been excluded automatically [#393][link-393]
* Added support for asynchronous webpack configuration [#412][link-412]
Expand Down Expand Up @@ -1009,3 +1016,11 @@ me to take it over and continue working on the project. That helped to revive it
[link-393]: https://github.com/serverless-heaven/serverless-webpack/issues/393
[link-412]: https://github.com/serverless-heaven/serverless-webpack/issues/412
[link-418]: https://github.com/serverless-heaven/serverless-webpack/issues/418
[link-453]: https://github.com/serverless-heaven/serverless-webpack/issues/453
[link-467]: https://github.com/serverless-heaven/serverless-webpack/issues/467
[link-449]: https://github.com/serverless-heaven/serverless-webpack/issues/449
[link-465]: https://github.com/serverless-heaven/serverless-webpack/issues/465
[link-480]: https://github.com/serverless-heaven/serverless-webpack/issues/480
[link-429]: https://github.com/serverless-heaven/serverless-webpack/pull/429
[link-433]: https://github.com/serverless-heaven/serverless-webpack/issues/433
2 changes: 1 addition & 1 deletion lib/wpwatch.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ module.exports = {
this.serverless.cli.log('Watching for changes...');
callback();
} else if (canEmit && currentCompileWatch === null) {
currentCompileWatch = BbPromise.resolve(
currentCompileWatch = BbPromise.resolve( // eslint-disable-line promise/no-promise-in-callback
this.serverless.pluginManager.spawn('webpack:compile:watch')
).then(() => this.serverless.cli.log('Watching for changes...'));
}
Expand Down
Loading

0 comments on commit 2a5b05f

Please sign in to comment.