You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* update dependencies to address high severity vulnerabilities ([5ba17e4](https://github.com/digitalmaas/serverless-plugin-browserifier/commit/5ba17e48460908227c9de156afc5fc1b170d36af))
7
+
* update dependencies to remove security warnings ([0089e68](https://github.com/digitalmaas/serverless-plugin-browserifier/commit/0089e6843286eadac4dad3e26aeedd8aeb996f04))
Copy file name to clipboardExpand all lines: README.md
+6-5Lines changed: 6 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ Serverless Browserifier Plugin
7
7
[![NPM downloads][downloads-badge]][npm-url]
8
8
[![standardjs][standardjs-badge]][standardjs-url]
9
9
10
-
> A [Serverless](https://serverless.com)v1 and v2 plugin that uses [`browserify`][browserify-url] to bundle your Node.js Lambda functions.
10
+
> A [Serverless](https://serverless.com) plugin that uses [`browserify`][browserify-url] to bundle your Node.js Lambda functions. Works with serverless versions 1 to 3.
11
11
12
12
1.[Supported Commands](#supported-commands)
13
13
1.[Motivation](#motivation)
@@ -190,9 +190,9 @@ const s3 = new S3()
190
190
191
191
#### Ignore AWS SDK v2!
192
192
193
-
Although you can use discrete clients (see item above), AWS Lambda service always bundles up the latest SDK version in its Lambda container image. That means that, even if you don't add AWS SDK to your bundle, it will still be available in runtime.
193
+
Although you can use discrete clients (see item above), AWS Lambda service always bundles up the latest v2 SDK version in its Lambda container image. That means that, even if you don't add AWS SDK to your bundle, it will still be available in for your code in runtime.
194
194
195
-
Therefore, if you don't need any specific AWS SDK version, you can add the following to your plugin config:
195
+
Therefore, if you don't need any specific AWS SDK v2 version, you can add the following to your plugin config:
@@ -246,7 +247,7 @@ You should be able to use [`uglify-es`][uglify-url] through [`uglifyify`][uglify
246
247
247
248
__This other plugin I use is not playing ball with `serverless-plugin-browserifier`! What's up?__
248
249
249
-
This plugin _hijacks_ the normal serverless packaging process, so it will probably conflict with other plugins that use similar mechanisms. Please avoid mixing this plugin with other plugins that modify serverless' packaging behaviour.
250
+
This plugin *hijacks* the normal serverless packaging process, so it will probably conflict with other plugins that use similar mechanisms. Please avoid mixing this plugin with other plugins that modify serverless' packaging behaviour.
0 commit comments