Skip to content

Commit 04fd5a6

Browse files
committed
Updating README
1 parent 7a9ecad commit 04fd5a6

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ serverless-bundle is a [Serverless Framework](https://www.serverless.com) plugin
88
- Linting Lambda functions using [ESLint](https://eslint.org)
99
- Supports transpiling unit tests with [babel-jest](https://github.com/facebook/jest/tree/master/packages/babel-jest)
1010
- Source map support for proper error messages
11+
- Support [esbuild](https://esbuild.github.io) and [esbuild-loader](https://github.com/privatenumber/esbuild-loader) for faster builds
1112

12-
And all this works without having to install Webpack, Babel, ESLint, etc. or manage any of their configs. Simply add serverless-bundle to your app and you are done!
13+
And all this works without having to install Webpack, Babel, ESLint, esbuild, etc. or manage any of their configs. Simply add serverless-bundle to your app and you are done!
1314

1415
```diff
1516
- "eslint"
@@ -22,6 +23,7 @@ And all this works without having to install Webpack, Babel, ESLint, etc. or man
2223
- "babel-eslint"
2324
- "babel-loader"
2425
- "eslint-loader"
26+
- "esbuild-loader"
2527
- "@babel/runtime"
2628
- "@babel/preset-env"
2729
- "serverless-webpack"
@@ -99,6 +101,7 @@ custom:
99101
concurrency: 5 # Set desired concurrency, defaults to the number of available cores
100102
stats: false # Don't print out any Webpack output
101103
linting: true # Enable linting as a part of the build process
104+
esbuild: false # Use esbuild-loader instead of babel or ts for faster builds
102105
disableForkTsChecker: false # Disable the ForkTsChecker plugin, more below
103106
tsConfig: "tsconfig.json" # Path to your 'tsconfig.json', if it's not in the root
104107
forceInclude: # Optional list of NPM packages that need to be included

0 commit comments

Comments
 (0)