From 33a0c3a9f9f499029905c40086b92d8ad0de183c Mon Sep 17 00:00:00 2001 From: Frank Schmid Date: Thu, 21 Dec 2017 11:14:10 +0100 Subject: [PATCH] Prepared release --- LICENSE | 2 +- README.md | 7 +++++++ package-lock.json | 18 +++++++++--------- package.json | 2 +- 4 files changed, 18 insertions(+), 11 deletions(-) diff --git a/LICENSE b/LICENSE index 63b4b681c..359153a8d 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) [year] [fullname] +Copyright (c) 2016-2017 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 diff --git a/README.md b/README.md index e71147f87..67bdd0ce6 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,7 @@ WebPack's [Tree-Shaking][link-webpack-tree] optimization. * Improved extensibility for plugin authors (see _For Developers_ section) * Serverless 1.12+ is now required +* Support of local `file:...` module references in package.json For the complete release notes see the end of this document. @@ -507,6 +508,10 @@ plugin when running a command or invoked by a hook. ## Release Notes +* 4.2.0 + * Support local file references in package.json [#263][link-263] + * Updated used tools (dev dependencies) + * 4.1.0 * Prohibit manual entry configuration with individual packaging [#272][link-272] * Fixed bug with stats in webpack config for individual packaging [#278][link-278] @@ -659,3 +664,5 @@ plugin when running a command or invoked by a hook. [link-279]: https://github.com/serverless-heaven/serverless-webpack/issues/279 [link-276]: https://github.com/serverless-heaven/serverless-webpack/issues/276 [link-269]: https://github.com/serverless-heaven/serverless-webpack/issues/269 + +[link-263]: https://github.com/serverless-heaven/serverless-webpack/issues/263 diff --git a/package-lock.json b/package-lock.json index 470675edf..0fc9aee75 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "serverless-webpack", - "version": "4.1.0", + "version": "4.2.0", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -5255,14 +5255,6 @@ "integrity": "sha1-qPbq7KkGdMMz58Q5U/J1tFFRBpU=", "dev": true }, - "string_decoder": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", - "integrity": "sha1-D8Z9fBQYJd6UKC3VNr7GubzoYKs=", - "requires": { - "safe-buffer": "5.1.1" - } - }, "string-width": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", @@ -5274,6 +5266,14 @@ "strip-ansi": "3.0.1" } }, + "string_decoder": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", + "integrity": "sha1-D8Z9fBQYJd6UKC3VNr7GubzoYKs=", + "requires": { + "safe-buffer": "5.1.1" + } + }, "stringstream": { "version": "0.0.5", "resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz", diff --git a/package.json b/package.json index 6d347beb0..9cfd8c122 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "serverless-webpack", - "version": "4.1.0", + "version": "4.2.0", "description": "Serverless plugin to bundle your javascript with Webpack", "main": "index.js", "author": "Nicola Peduzzi (http://elastic-coders.com)",