Skip to content

Releases: AnomalyInnovations/serverless-bundle

Adding support for raw-loader

05 Jul 01:32
Compare
Choose a tag to compare

You can now use the raw-loader to import certain files as strings. Defaults to .pem and .txt. And additional ones can be added using the rawFileExtensions config option.

A huge thanks for @carlcheel for the PR — #106

Update using:

$ npm install --save-dev --save-exact [email protected]

Adding forceExclude option

21 Jun 00:35
Compare
Choose a tag to compare

Adding a new forceExclude option to fix the issues with v1.7.0. Where the externals option was being set as forceExclude as well. Also, added documentation to explain differences between the two — https://github.com/AnomalyInnovations/serverless-bundle#externals-vs-forceexclude

Upgrade using:

$ npm install --save-dev [email protected]

Adding support for externals option

30 May 17:50
Compare
Choose a tag to compare

You can now set certain packages to not be bundled if they are provided in the Lambda runtime through Layers.

Thanks to @BhuvaneshwaranR for the PR #84.

Adding support for Webpack alias

24 May 20:27
Compare
Choose a tag to compare

Create an alias to 'import' modules easily with a custom path. Thanks to @jliebrand #96.

Adding automatic support for isomorphic loaders

24 May 19:31
Compare
Choose a tag to compare

Serverelss Bundle now automatically supports importing css, scss, and image files.

Thanks to @PenguinOfWar for the PR #90.

Adding support for package specific fixes

12 Apr 20:05
Compare
Choose a tag to compare

Adding fixPackages option to handle specific packages that need to customize the Webpack config to work.

Supporting class properties for Jest tests

12 Apr 17:59
Compare
Choose a tag to compare

Enable setting alternative processors for Jest

30 Mar 22:26
Compare
Choose a tag to compare

Setting __dirname correctly

08 Mar 21:46
Compare
Choose a tag to compare

__dirname for nodejs #64

Fixing nested services packaging

12 Feb 01:09
Compare
Choose a tag to compare

Fixes the package.json not found error for nested services.