@mrgrain/cdk-esbuild 1.121.0 → 1.125.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,10 +2,38 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ## [1.125.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.124.0...v1.125.0) (2021-10-01)
6
+
7
+ ### ⚠ BREAKING CHANGES
8
+
9
+ - `esbuild` released a breaking change to the tree shaking options and introduced a new way how platform-specific binaries are installed. Please check the esbuild v0.13.0 [release notes](https://github.com/evanw/esbuild/releases/tag/v0.12.0) for details.
10
+
11
+ ### Features
12
+
13
+ - works with cdk-1.125.0
14
+
15
+ - upgrade `esbuild` minimum version to ^0.13.0 ([3d0b5ee](https://github.com/mrgrain/cdk-esbuild/commit/3d0b5ee5c01b7edcf7042a728932a0e1ce722d3c))
16
+
17
+ ## [1.124.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.123.0...v1.124.0) (2021-10-01)
18
+
19
+ - works with cdk-1.124.0
20
+
21
+ ## [1.123.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.122.0...v1.123.0) (2021-09-22)
22
+
23
+ - works with cdk-1.123.0
24
+
25
+ ## [1.122.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.121.0...v1.122.0) (2021-09-12)
26
+
27
+ - works with cdk-1.122.0
28
+
5
29
  ## [1.121.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.120.0...v1.121.0) (2021-09-12)
6
30
 
31
+ - works with cdk-1.121.0
32
+
7
33
  ## [1.120.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.119.0...v1.120.0) (2021-09-12)
8
34
 
35
+ - works with cdk-1.120.0
36
+
9
37
  ## [1.119.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.118.0...v1.119.0) (2021-09-12)
10
38
 
11
39
  - works with cdk-1.119.0
package/README.md CHANGED
@@ -9,7 +9,9 @@ _CDK constructs for [esbuild](https://github.com/evanw/esbuild), an extremely fa
9
9
  _esbuild_ is an extremely fast bundler and minifier for Typescript and JavaScript.
10
10
  This package makes _esbuild_ available to deploy lambda functions, static websites or to publish build artefacts (assets) for further use.
11
11
 
12
- CDK [supports _esbuild_ with lambdas](https://docs.aws.amazon.com/cdk/api/latest/docs/aws-lambda-nodejs-readme.html), but the implementation cannot be used for other things and doesn't expose all _esbuild_'s build interface.
12
+ AWS CDK [supports _esbuild_ with Lambda Functions](https://docs.aws.amazon.com/cdk/api/latest/docs/aws-lambda-nodejs-readme.html). However the implementation cannot be used with any other Constructs and doesn't expose all of _esbuild_'s build interface.
13
+
14
+ This package is running _esbuild_ directly in Node.js and bypasses Docker which the AWS CDK implementation uses. This makes it quicker and easier to use for Node.hs users, but incompatible for other languages.
13
15
 
14
16
  ## Getting started
15
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mrgrain/cdk-esbuild",
3
- "version": "1.121.0",
3
+ "version": "1.125.0",
4
4
  "description": "CDK constructs for esbuild, an extremely fast JavaScript bundler",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -28,7 +28,7 @@
28
28
  "test-cycle": "npm i && npm run clean && npm run build && npm t && npm run clean"
29
29
  },
30
30
  "dependencies": {
31
- "esbuild": "^0.12.0"
31
+ "esbuild": "^0.13.0"
32
32
  },
33
33
  "peerDependencies": {
34
34
  "@aws-cdk/aws-lambda": "^1.99.0",