@mrgrain/cdk-esbuild 3.0.0 → 3.1.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/.gitattributes +22 -21
- package/.jsii +128 -85
- package/.projenrc.ts +40 -32
- package/API.md +20 -0
- package/CHANGELOG.md +4 -362
- package/LICENSE +1 -1
- package/README.md +16 -10
- package/lib/asset.js +2 -2
- package/lib/bundler.js +2 -2
- package/lib/code.js +2 -2
- package/lib/esbuild-types.d.ts +50 -0
- package/lib/esbuild-types.js +1 -1
- package/lib/inline-code.js +4 -4
- package/lib/source.js +2 -2
- package/package.json +28 -25
- package/projenrc/TypeScriptSourceFile.ts +1 -1
- package/releasetag.txt +1 -0
- package/version.txt +1 -0
package/.projenrc.ts
CHANGED
|
@@ -1,23 +1,18 @@
|
|
|
1
1
|
import {
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
awscdk,
|
|
3
|
+
javascript,
|
|
4
4
|
JsonFile,
|
|
5
|
-
NodePackageManager,
|
|
6
5
|
release,
|
|
7
6
|
vscode,
|
|
8
7
|
} from 'projen';
|
|
9
8
|
import { SourceFile } from 'ts-morph';
|
|
10
9
|
import { TypeScriptSourceFile } from './projenrc/TypeScriptSourceFile';
|
|
11
10
|
|
|
12
|
-
const project = new AwsCdkConstructLibrary({
|
|
11
|
+
const project = new awscdk.AwsCdkConstructLibrary({
|
|
13
12
|
projenrcTs: true,
|
|
14
13
|
projenrcTsOptions: {
|
|
15
14
|
filename: '.projenrc.ts',
|
|
16
15
|
},
|
|
17
|
-
eslintOptions: {
|
|
18
|
-
lintProjenRc: false,
|
|
19
|
-
dirs: ['src', 'projenrc', '.projenrc.ts'],
|
|
20
|
-
},
|
|
21
16
|
depsUpgradeOptions: {
|
|
22
17
|
workflow: false,
|
|
23
18
|
},
|
|
@@ -54,9 +49,27 @@ const project = new AwsCdkConstructLibrary({
|
|
|
54
49
|
},
|
|
55
50
|
},
|
|
56
51
|
},
|
|
52
|
+
jestOptions: {
|
|
53
|
+
jestConfig: {
|
|
54
|
+
testPathIgnorePatterns: ['/node_modules/', '/examples/'],
|
|
55
|
+
coveragePathIgnorePatterns: ['/node_modules/', '/examples/'],
|
|
56
|
+
},
|
|
57
|
+
},
|
|
58
|
+
eslintOptions: {
|
|
59
|
+
lintProjenRc: false,
|
|
60
|
+
dirs: ['src', 'projenrc', '.projenrc.ts'],
|
|
61
|
+
ignorePatterns: [
|
|
62
|
+
'*.js',
|
|
63
|
+
'*.d.ts',
|
|
64
|
+
'node_modules/',
|
|
65
|
+
'*.generated.ts',
|
|
66
|
+
'coverage',
|
|
67
|
+
'examples/',
|
|
68
|
+
],
|
|
69
|
+
},
|
|
57
70
|
|
|
58
71
|
// Release
|
|
59
|
-
packageManager: NodePackageManager.NPM,
|
|
72
|
+
packageManager: javascript.NodePackageManager.NPM,
|
|
60
73
|
npmDistTag: 'latest',
|
|
61
74
|
defaultReleaseBranch: 'main',
|
|
62
75
|
majorVersion: 3,
|
|
@@ -65,21 +78,23 @@ const project = new AwsCdkConstructLibrary({
|
|
|
65
78
|
twitter: '@mrgrain',
|
|
66
79
|
},
|
|
67
80
|
workflowContainerImage: 'jsii/superchain:1-buster-slim-node14',
|
|
81
|
+
workflowBootstrapSteps: [{
|
|
82
|
+
name: 'Update npm',
|
|
83
|
+
run: 'sudo npm i -g npm',
|
|
84
|
+
}],
|
|
68
85
|
|
|
69
86
|
// Dependencies
|
|
70
87
|
cdkVersion: '2.0.0',
|
|
71
88
|
peerDeps: [
|
|
72
89
|
'aws-cdk-lib@^2.0.0',
|
|
73
90
|
],
|
|
74
|
-
cdkDependencies: [],
|
|
75
|
-
cdkTestDependencies: [],
|
|
76
|
-
cdkAssert: false,
|
|
77
91
|
devDeps: [
|
|
78
92
|
'@aws-cdk/aws-synthetics-alpha',
|
|
79
93
|
'@types/eslint',
|
|
80
94
|
'aws-cdk-lib@2.0.0',
|
|
81
95
|
'constructs@10.0.5',
|
|
82
96
|
'esbuild@^0.14.0',
|
|
97
|
+
'jest-mock',
|
|
83
98
|
'ts-morph',
|
|
84
99
|
],
|
|
85
100
|
|
|
@@ -92,6 +107,7 @@ const project = new AwsCdkConstructLibrary({
|
|
|
92
107
|
'.cdk.staging',
|
|
93
108
|
'examples/template',
|
|
94
109
|
'!/.github/workflows/manual-release.yml',
|
|
110
|
+
'!/examples/**',
|
|
95
111
|
],
|
|
96
112
|
npmignore: [
|
|
97
113
|
'.npmrc',
|
|
@@ -108,27 +124,8 @@ const project = new AwsCdkConstructLibrary({
|
|
|
108
124
|
],
|
|
109
125
|
});
|
|
110
126
|
|
|
111
|
-
const packageJson = project.tryFindObjectFile('package.json');
|
|
112
|
-
packageJson?.addOverride('optionalDependencies', {
|
|
113
|
-
esbuild: '^0.14.0',
|
|
114
|
-
});
|
|
115
|
-
packageJson?.addOverride('jest.testPathIgnorePatterns.1', '/examples/');
|
|
116
|
-
|
|
117
|
-
const eslintRc = project.tryFindObjectFile('.eslintrc.json');
|
|
118
|
-
eslintRc?.addOverride('ignorePatterns', [
|
|
119
|
-
'*.js',
|
|
120
|
-
'*.d.ts',
|
|
121
|
-
'node_modules/',
|
|
122
|
-
'examples/',
|
|
123
|
-
'*.generated.ts',
|
|
124
|
-
'coverage',
|
|
125
|
-
'!.projenrc.ts',
|
|
126
|
-
]);
|
|
127
|
-
|
|
128
|
-
(project.tryFindFile('.gitignore') as IgnoreFile).addPatterns(
|
|
129
|
-
'!/examples/**',
|
|
130
|
-
);
|
|
131
127
|
|
|
128
|
+
// VSCode config
|
|
132
129
|
new JsonFile(project, '.vscode/extensions.json', {
|
|
133
130
|
readonly: false,
|
|
134
131
|
marker: false,
|
|
@@ -165,6 +162,15 @@ new vscode.VsCode(project).launchConfiguration.addConfiguration({
|
|
|
165
162
|
});
|
|
166
163
|
|
|
167
164
|
|
|
165
|
+
// esbuild
|
|
166
|
+
project.tryFindObjectFile('package.json')?.addOverride('optionalDependencies', {
|
|
167
|
+
esbuild: '^0.14.0',
|
|
168
|
+
});
|
|
169
|
+
|
|
170
|
+
project.eslint?.addRules({
|
|
171
|
+
'@typescript-eslint/member-ordering': 'off',
|
|
172
|
+
});
|
|
173
|
+
|
|
168
174
|
new TypeScriptSourceFile(project, 'src/esbuild-types.ts', {
|
|
169
175
|
source: 'node_modules/esbuild/lib/main.d.ts',
|
|
170
176
|
editGitignore: false,
|
|
@@ -186,4 +192,6 @@ new TypeScriptSourceFile(project, 'src/esbuild-types.ts', {
|
|
|
186
192
|
},
|
|
187
193
|
});
|
|
188
194
|
|
|
195
|
+
|
|
196
|
+
// Synth project
|
|
189
197
|
project.synth();
|
package/API.md
CHANGED
|
@@ -229,6 +229,16 @@ Documentation: https://esbuild.github.io/api/#define.
|
|
|
229
229
|
|
|
230
230
|
---
|
|
231
231
|
|
|
232
|
+
##### `drop`<sup>Optional</sup> <a name="@mrgrain/cdk-esbuild.BuildOptions.property.drop"></a>
|
|
233
|
+
|
|
234
|
+
```typescript
|
|
235
|
+
public readonly drop: string[];
|
|
236
|
+
```
|
|
237
|
+
|
|
238
|
+
- *Type:* `string`[]
|
|
239
|
+
|
|
240
|
+
---
|
|
241
|
+
|
|
232
242
|
##### `entryNames`<sup>Optional</sup> <a name="@mrgrain/cdk-esbuild.BuildOptions.property.entryNames"></a>
|
|
233
243
|
|
|
234
244
|
```typescript
|
|
@@ -1059,6 +1069,16 @@ Documentation: https://esbuild.github.io/api/#define.
|
|
|
1059
1069
|
|
|
1060
1070
|
---
|
|
1061
1071
|
|
|
1072
|
+
##### `drop`<sup>Optional</sup> <a name="@mrgrain/cdk-esbuild.TransformOptions.property.drop"></a>
|
|
1073
|
+
|
|
1074
|
+
```typescript
|
|
1075
|
+
public readonly drop: string[];
|
|
1076
|
+
```
|
|
1077
|
+
|
|
1078
|
+
- *Type:* `string`[]
|
|
1079
|
+
|
|
1080
|
+
---
|
|
1081
|
+
|
|
1062
1082
|
##### `footer`<sup>Optional</sup> <a name="@mrgrain/cdk-esbuild.TransformOptions.property.footer"></a>
|
|
1063
1083
|
|
|
1064
1084
|
```typescript
|
package/CHANGELOG.md
CHANGED
|
@@ -1,371 +1,13 @@
|
|
|
1
1
|
|
|
2
|
-
## [3.
|
|
2
|
+
## [3.1.0](https://github.com/mrgrain/cdk-esbuild/compare/v3.0.0...v3.1.0) (2022-01-28)
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
### ⚠ BREAKING CHANGES
|
|
6
|
-
|
|
7
|
-
* package now requires AWS CDK v2
|
|
8
|
-
|
|
9
5
|
### Features
|
|
10
6
|
|
|
11
|
-
*
|
|
7
|
+
* support new build option `drop` from esbuild ([54445ad](https://github.com/mrgrain/cdk-esbuild/commit/54445ad2490e7cba81e54a555a91ba86553ec67f))
|
|
12
8
|
|
|
13
9
|
|
|
14
10
|
### Bug Fixes
|
|
15
11
|
|
|
16
|
-
*
|
|
17
|
-
|
|
18
|
-
## [1.133.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.132.0...v1.133.0) (2021-11-21)
|
|
19
|
-
|
|
20
|
-
## [1.132.0](https://github.com/mrgrain/cdk-esbuild/compare/v2.0.0...v1.132.0) (2021-11-21)
|
|
21
|
-
|
|
22
|
-
## [1.131.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.130.0...v1.131.0) (2021-11-07)
|
|
23
|
-
|
|
24
|
-
## [1.130.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.129.0...v1.130.0) (2021-11-07)
|
|
25
|
-
|
|
26
|
-
## [3.0.0-rc.0](https://github.com/mrgrain/cdk-esbuild/compare/v2.2.0...v3.0.0-rc.0) (2021-12-04)
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
### ⚠ BREAKING CHANGES
|
|
30
|
-
|
|
31
|
-
* package now requires AWS CDK v2
|
|
32
|
-
|
|
33
|
-
### Features
|
|
34
|
-
|
|
35
|
-
* upgrade to AWS CDK v2 ([134caa8](https://github.com/mrgrain/cdk-esbuild/commit/134caa8848708a132c28d9140d2d569f90a2b178))
|
|
36
|
-
|
|
37
|
-
## [2.2.0](https://github.com/mrgrain/cdk-esbuild/compare/v2.1.0...v2.2.0) (2021-12-04)
|
|
38
|
-
|
|
39
|
-
**This release contains an upgrade of esbuild with backwards-incompatible changes.** This is inline with the versioning strategy for this package, which is to release esbuild upgrades with minor versions as long as esbuild has not reached version 1.0.0. The backwards-incompatible changes are fairly obscure this time around, but please make sure to read the [0.14.0 release notes](https://github.com/evanw/esbuild/releases/tag/v0.14.0).
|
|
40
|
-
|
|
41
|
-
### Features
|
|
42
|
-
|
|
43
|
-
- upgrade esbuild to [^0.14.0](https://github.com/evanw/esbuild/releases/tag/v0.14.0) ([#143](https://github.com/mrgrain/cdk-esbuild/issues/143)) ([4568b92](https://github.com/mrgrain/cdk-esbuild/commit/4568b92011a3e38f23d85998dcbbca1afa06918e))
|
|
44
|
-
- **examples/esbuild-with-plugins:** example of how to use the escape hatch to run esbuild with plugins ([#142](https://github.com/mrgrain/cdk-esbuild/issues/142)) ([0876f0e](https://github.com/mrgrain/cdk-esbuild/commit/0876f0e4d4bd65a792deef8adf43229568ab899b))
|
|
45
|
-
|
|
46
|
-
## [2.1.0](https://github.com/mrgrain/cdk-esbuild/compare/v2.0.0...v2.1.0) (2021-11-25)
|
|
47
|
-
|
|
48
|
-
### Features
|
|
49
|
-
|
|
50
|
-
- escape hatch to provide a custom build or transform function ([#141](https://github.com/mrgrain/cdk-esbuild/issues/141)) ([aacfac1](https://github.com/mrgrain/cdk-esbuild/commit/aacfac1b71f1de78fbfdc1161c6e8cf32fd0629e))
|
|
51
|
-
- `Inline*Code` now takes `TransformerProps` as second parameter, passing in `TransformOptions` is still supported but deprecated ([#141](https://github.com/mrgrain/cdk-esbuild/issues/141)) ([aacfac1](https://github.com/mrgrain/cdk-esbuild/commit/aacfac1b71f1de78fbfdc1161c6e8cf32fd0629e))
|
|
52
|
-
|
|
53
|
-
## [2.0.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.129.0...v2.0.0) (2021-11-07)
|
|
54
|
-
|
|
55
|
-
### ⚠ BREAKING CHANGES
|
|
56
|
-
|
|
57
|
-
- Major release of this package to make it JSII compatible (#114) ([727c78a](https://github.com/mrgrain/cdk-esbuild/commit/727c78aefa2079d0f561b8b664d75eb6c669e46b)), closes [#114](https://github.com/mrgrain/cdk-esbuild/issues/114) [#117](https://github.com/mrgrain/cdk-esbuild/issues/117) [#119](https://github.com/mrgrain/cdk-esbuild/issues/119) [#120](https://github.com/mrgrain/cdk-esbuild/issues/120) [#123](https://github.com/mrgrain/cdk-esbuild/issues/123)
|
|
58
|
-
|
|
59
|
-
- Deprecated features from v1 have been removed. Please see upgrading instructions below.
|
|
60
|
-
|
|
61
|
-
### Upgrading to v2
|
|
62
|
-
|
|
63
|
-
- Update the package dependency to v2: `npm install --save @mrgrain/cdk-esbuild@^2.0.0`
|
|
64
|
-
- `esbuild` is now installed as an optional dependency. If your setup does not automatically install optional dependencies, add it as an explicit dependency.
|
|
65
|
-
- Remove any use of `bundlerPriority`.
|
|
66
|
-
- Unstable construct `EsbuildBundling` has been renamed to `EsbuildBundler` and its interface has slightly changed. Like most other constructs, it now takes `entryPoints` as first parameter, with an optional `props` object as the second.
|
|
67
|
-
|
|
68
|
-
### Features
|
|
69
|
-
|
|
70
|
-
- JSII compatibility & v2 GA (#114) ([727c78a](https://github.com/mrgrain/cdk-esbuild/commit/727c78aefa2079d0f561b8b664d75eb6c669e46b)), closes [#114](https://github.com/mrgrain/cdk-esbuild/issues/114) [#117](https://github.com/mrgrain/cdk-esbuild/issues/117) [#119](https://github.com/mrgrain/cdk-esbuild/issues/119) [#120](https://github.com/mrgrain/cdk-esbuild/issues/120) [#123](https://github.com/mrgrain/cdk-esbuild/issues/123)
|
|
71
|
-
|
|
72
|
-
- Synthesize `esbuild` types from source ([#117](https://github.com/mrgrain/cdk-esbuild/issues/117)) ([af44d55](https://github.com/mrgrain/cdk-esbuild/commit/af44d55e97db6fd8fbda916eb0f25dae55513cba))
|
|
73
|
-
|
|
74
|
-
- Generated docs now contain links to esbuild documentation ([#123](https://github.com/mrgrain/cdk-esbuild/issues/123)) ([95f2fd0](https://github.com/mrgrain/cdk-esbuild/commit/95f2fd07330cf9624dd05f23345bfe0f5754fc57))
|
|
75
|
-
|
|
76
|
-
## [1.133.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.132.0...v1.133.0) (2021-11-21)
|
|
77
|
-
|
|
78
|
-
- **This is a release on the legacy v1 branch. Please upgrade to v2 as soon as possible.**
|
|
79
|
-
- works with cdk-1.133.0
|
|
80
|
-
|
|
81
|
-
### ⛔ EXTREMELY IMPORTANT NOTICE FOR USERS WHO HAVE NOT UPGRADE TO v2 OF THIS PACKAGE
|
|
82
|
-
|
|
83
|
-
**tl;dr No more "versioned" release on this legacy branch.**
|
|
84
|
-
|
|
85
|
-
Until now, I have release a new version of this package every time a new CDK version was released. Even if no updates where necessary. This practice will stop with this release and I will only release a new version on the legacy v1 branch, if an update is required for compatibility. **Please upgrade to v2 of this package as soon as possible!**
|
|
86
|
-
|
|
87
|
-
[**Upgrading instructions to v2 of this package**](https://github.com/mrgrain/cdk-esbuild#migrating-to-v2)
|
|
88
|
-
|
|
89
|
-
If you're using the tag `cdk-v1`, you will already receive the latest stable v2 release. If you're using a versioned tag (e.g. `cdk-1.29.0`), this tag format is deprecated and release have not been tagged for a while now.
|
|
90
|
-
|
|
91
|
-
## [1.132.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.131.0...v1.132.0) (2021-11-21)
|
|
92
|
-
|
|
93
|
-
- works with cdk-1.132.0
|
|
94
|
-
|
|
95
|
-
### ⚠ IMPORTANT NOTICE
|
|
96
|
-
|
|
97
|
-
This is a release on the legacy v1 branch. Please upgrade to v2 as soon as possible.
|
|
98
|
-
|
|
99
|
-
If you're using the tag `cdk-v1`, you will already receive the latest stable v2 release. If you're using a versioned tag (e.g. `cdk-1.29.0`), this tag format is deprecated and future releases won't be tagged like this.
|
|
100
|
-
|
|
101
|
-
## [1.131.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.130.0...v1.131.0) (2021-11-07)
|
|
102
|
-
|
|
103
|
-
- works with cdk-1.131.0
|
|
104
|
-
|
|
105
|
-
### ⚠ IMPORTANT NOTICE
|
|
106
|
-
|
|
107
|
-
This is a release on the legacy v1 branch. Please upgrade to v2 as soon as possible.
|
|
108
|
-
|
|
109
|
-
If you're using the tag `cdk-v1`, you will already receive the latest stable v2 release. If you're using a versioned tag (e.g. `cdk-1.29.0`), this tag format is deprecated and future releases won't be tagged like this.
|
|
110
|
-
|
|
111
|
-
## [1.130.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.129.0...v1.130.0) (2021-11-07)
|
|
112
|
-
|
|
113
|
-
- works with cdk-1.130.0
|
|
114
|
-
|
|
115
|
-
### ⚠ IMPORTANT NOTICE
|
|
116
|
-
|
|
117
|
-
This is the first release on the legacy v1 branch. Please upgrade to v2 as soon as possible.
|
|
118
|
-
|
|
119
|
-
If you're using the tag `cdk-v1`, you will already receive the latest stable v2 release. If you're using a versioned tag (e.g. `cdk-1.29.0`), this tag format is deprecated and future releases won't be tagged like this.
|
|
120
|
-
|
|
121
|
-
## [1.129.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.128.0...v1.129.0) (2021-10-28)
|
|
122
|
-
|
|
123
|
-
### ⚠ IMPORTANT NOTICE
|
|
124
|
-
|
|
125
|
-
This will be the final release tagged with a specific version of AWS CDK (i.e. `cdk-1.29.0`). From now on, a single tag `cdk-v1` will point to the latest stable release for v1 of AWS CDK.
|
|
126
|
-
|
|
127
|
-
Please also note, that a new major version of this package already has a release candidate. Using the `cdk-v1` will result in BREAKING CHANGES once the new version is stable.
|
|
128
|
-
|
|
129
|
-
### Features
|
|
130
|
-
|
|
131
|
-
- works with cdk-1.129.0 ([d7631d4](https://github.com/mrgrain/cdk-esbuild/commit/d7631d4119e6ef66e0da02a35f9680196e94f124))
|
|
132
|
-
- deprecated Docker bundler ([6715463](https://github.com/mrgrain/cdk-esbuild/commit/6715463ee90f339ac261622597e39b2ee6c46d71))
|
|
133
|
-
|
|
134
|
-
## [1.128.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.127.0...v1.128.0) (2021-10-16)
|
|
135
|
-
|
|
136
|
-
- works with cdk-1.128.0
|
|
137
|
-
|
|
138
|
-
## [1.127.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.126.0...v1.127.0) (2021-10-09)
|
|
139
|
-
|
|
140
|
-
- works with cdk-1.127.0
|
|
141
|
-
- **example/website:** How to monitor a website with Synthetics ([621d2d4](https://github.com/mrgrain/cdk-esbuild/commit/621d2d4192da63fa385b76b59353ffe77023c38d))
|
|
142
|
-
|
|
143
|
-
## [1.126.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.126.0-beta.0...v1.126.0) (2021-10-09)
|
|
144
|
-
|
|
145
|
-
### Features
|
|
146
|
-
|
|
147
|
-
- works with cdk-1.126.0
|
|
148
|
-
- [Experimental] `Code` is now compatible with `@aws-cdk/aws-synthetics` ([#99](https://github.com/mrgrain/cdk-esbuild/issues/99)) ([f840300](https://github.com/mrgrain/cdk-esbuild/commit/f840300439f7175c46d173378d8e941b7dd80483))
|
|
149
|
-
|
|
150
|
-
## [1.125.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.124.0...v1.125.0) (2021-10-01)
|
|
151
|
-
|
|
152
|
-
### ⚠ BREAKING CHANGES
|
|
153
|
-
|
|
154
|
-
- `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.
|
|
155
|
-
|
|
156
|
-
### Features
|
|
157
|
-
|
|
158
|
-
- works with cdk-1.125.0
|
|
159
|
-
|
|
160
|
-
- upgrade `esbuild` minimum version to ^0.13.0 ([3d0b5ee](https://github.com/mrgrain/cdk-esbuild/commit/3d0b5ee5c01b7edcf7042a728932a0e1ce722d3c))
|
|
161
|
-
|
|
162
|
-
## [1.124.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.123.0...v1.124.0) (2021-10-01)
|
|
163
|
-
|
|
164
|
-
- works with cdk-1.124.0
|
|
165
|
-
|
|
166
|
-
## [1.123.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.122.0...v1.123.0) (2021-09-22)
|
|
167
|
-
|
|
168
|
-
- works with cdk-1.123.0
|
|
169
|
-
|
|
170
|
-
## [1.122.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.121.0...v1.122.0) (2021-09-12)
|
|
171
|
-
|
|
172
|
-
- works with cdk-1.122.0
|
|
173
|
-
|
|
174
|
-
## [1.121.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.120.0...v1.121.0) (2021-09-12)
|
|
175
|
-
|
|
176
|
-
- works with cdk-1.121.0
|
|
177
|
-
|
|
178
|
-
## [1.120.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.119.0...v1.120.0) (2021-09-12)
|
|
179
|
-
|
|
180
|
-
- works with cdk-1.120.0
|
|
181
|
-
|
|
182
|
-
## [1.119.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.118.0...v1.119.0) (2021-09-12)
|
|
183
|
-
|
|
184
|
-
- works with cdk-1.119.0
|
|
185
|
-
|
|
186
|
-
## [1.118.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.117.0...v1.118.0) (2021-09-12)
|
|
187
|
-
|
|
188
|
-
- works with cdk-1.118.0
|
|
189
|
-
|
|
190
|
-
### Bug Fixes
|
|
191
|
-
|
|
192
|
-
- fix error handling type issue in latest tsc version ([b5e36e2](https://github.com/mrgrain/cdk-esbuild/commit/b5e36e27481706ea5a7ac5f8c05d74418b07c125))
|
|
193
|
-
|
|
194
|
-
## [1.117.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.116.0...v1.117.0) (2021-08-08)
|
|
195
|
-
|
|
196
|
-
- works with cdk-1.117.0
|
|
197
|
-
|
|
198
|
-
## [1.116.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.115.0...v1.116.0) (2021-08-08)
|
|
199
|
-
|
|
200
|
-
- works with cdk-1.116.0
|
|
201
|
-
|
|
202
|
-
## [1.115.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.114.0...v1.115.0) (2021-08-08)
|
|
203
|
-
|
|
204
|
-
- works with cdk-1.115.0
|
|
205
|
-
|
|
206
|
-
## [1.114.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.113.0...v1.114.0) (2021-08-08)
|
|
207
|
-
|
|
208
|
-
- works with cdk-1.114.0
|
|
209
|
-
|
|
210
|
-
## [1.113.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.112.0...v1.113.0) (2021-08-08)
|
|
211
|
-
|
|
212
|
-
- works with cdk-1.113.0
|
|
213
|
-
|
|
214
|
-
## [1.112.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.111.0...v1.112.0) (2021-08-08)
|
|
215
|
-
|
|
216
|
-
- works with cdk-1.112.0
|
|
217
|
-
|
|
218
|
-
## [1.111.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.110.0...v1.111.0) (2021-08-08)
|
|
219
|
-
|
|
220
|
-
- works with cdk-1.111.0
|
|
221
|
-
|
|
222
|
-
## [1.110.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.109.0...v1.110.0) (2021-06-24)
|
|
223
|
-
|
|
224
|
-
- works with cdk-1.110.0
|
|
225
|
-
|
|
226
|
-
## [1.109.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.108.0...v1.109.0) (2021-06-24)
|
|
227
|
-
|
|
228
|
-
- works with cdk-1.109.0
|
|
229
|
-
|
|
230
|
-
## [1.108.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.107.0...v1.108.0) (2021-06-09)
|
|
231
|
-
|
|
232
|
-
- works with cdk-1.108.0
|
|
233
|
-
|
|
234
|
-
## [1.107.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.106.0...v1.107.0) (2021-06-03)
|
|
235
|
-
|
|
236
|
-
- works with cdk-1.107.0
|
|
237
|
-
|
|
238
|
-
## [1.106.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.105.0...v1.106.0) (2021-05-31)
|
|
239
|
-
|
|
240
|
-
- works with cdk-1.106.0
|
|
241
|
-
|
|
242
|
-
## [1.105.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.104.0...v1.105.0) (2021-05-19)
|
|
243
|
-
|
|
244
|
-
- works with cdk-1.105.0
|
|
245
|
-
|
|
246
|
-
### ⚠️ BREAKING CHANGES TO EXPERIMENTAL FEATURES
|
|
247
|
-
|
|
248
|
-
- upgraded esbuild to [v0.12.0](https://github.com/evanw/esbuild/releases/tag/v0.12.0) which contains backwards-incompatible changes (mostly related to CSS bundling)
|
|
249
|
-
|
|
250
|
-
## [1.104.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.103.0...v1.104.0) (2021-05-19)
|
|
251
|
-
|
|
252
|
-
- works with cdk-1.104.0 ([fb0de78](https://github.com/mrgrain/cdk-esbuild/commit/fb0de78faf29815045822b8e80b2bbb07b8f7cbf))
|
|
253
|
-
|
|
254
|
-
## [1.103.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.102.0...v1.103.0) (2021-05-13)
|
|
255
|
-
|
|
256
|
-
- works with cdk-1.103.0
|
|
257
|
-
|
|
258
|
-
### ⚠️ BREAKING CHANGES TO EXPERIMENTAL FEATURES
|
|
259
|
-
|
|
260
|
-
- removed deprecated `forceDockerBundling` and `localBundling` ([cc40b90](https://github.com/mrgrain/cdk-esbuild/commit/cc40b900acd8cba725e31db0a79cd3f8b711277e))
|
|
261
|
-
|
|
262
|
-
## [1.102.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.101.0...v1.102.0) (2021-05-04)
|
|
263
|
-
|
|
264
|
-
- works with cdk-1.102.0 ([c616c1b](https://github.com/mrgrain/cdk-esbuild/commit/c616c1ba07a9bdd11f3dc3369b1335918458800f))
|
|
265
|
-
|
|
266
|
-
### Features
|
|
267
|
-
|
|
268
|
-
- new high-level constructs prop `bundlerPriority` to replace deprecated `forceDockerBundling` ([cc4c933](https://github.com/mrgrain/cdk-esbuild/commit/cc4c93376cf3a8628edd696fe9fa8f65a09c7e21))
|
|
269
|
-
- **examples/lambda:** added new complete example for lambda function ([f8ca3c0](https://github.com/mrgrain/cdk-esbuild/commit/f8ca3c093a11f1d56b9f08cd0a4f3b3eaecd5690))
|
|
270
|
-
|
|
271
|
-
### Bug Fixes
|
|
272
|
-
|
|
273
|
-
- **examples/website:** changed start command to work with latest esbuild versions ([45b4c91](https://github.com/mrgrain/cdk-esbuild/commit/45b4c91b454a9520e3aca4ff66ed75abc2ea7d4a))
|
|
274
|
-
|
|
275
|
-
## [1.101.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.100.0...v1.101.0) (2021-05-01)
|
|
276
|
-
|
|
277
|
-
- works with cdk-1.101.0
|
|
278
|
-
|
|
279
|
-
### Features
|
|
280
|
-
|
|
281
|
-
- pretty print esbuild build errors and warnings when using local bundler ([7f15bed](https://github.com/mrgrain/cdk-esbuild/commit/7f15bedbdfb619c2d0767bc37458108e01c3a85e))
|
|
282
|
-
- pretty print esbuild transform errors and warnings ([1eeeb10](https://github.com/mrgrain/cdk-esbuild/commit/1eeeb10ca6b1e46452c55792d28429986eb4b09f))
|
|
283
|
-
- set bundling priority explicitly, deprecating `localBundling` in favour of `priority` ([425665a](https://github.com/mrgrain/cdk-esbuild/commit/425665a2f8f20bb557119e79e3354a4d9d696d24))
|
|
284
|
-
|
|
285
|
-
## [1.100.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.100.0-beta.1...v1.100.0) (2021-05-01)
|
|
286
|
-
|
|
287
|
-
- no changes, cdk version constraints are now less strict
|
|
288
|
-
|
|
289
|
-
## [1.99.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.98.0...v1.99.0) (2021-04-19)
|
|
290
|
-
|
|
291
|
-
- update to cdk-1.99.0 ([cfffb19](https://github.com/mrgrain/cdk-esbuild/commit/cfffb1901f8567ea81de3e7f746d8cffd50b4bcc))
|
|
292
|
-
|
|
293
|
-
## [1.98.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.97.0...v1.98.0) (2021-04-13)
|
|
294
|
-
|
|
295
|
-
- update to cdk-1.98.0 ([0165256](https://github.com/mrgrain/cdk-esbuild/commit/0165256d26a2b24b45b17cb747f63eff26c983d1))
|
|
296
|
-
|
|
297
|
-
## [1.97.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.96.0...v1.97.0) (2021-04-11)
|
|
298
|
-
|
|
299
|
-
- update to cdk-1.97.0 ([fedb40a](https://github.com/mrgrain/cdk-esbuild/commit/fedb40a3098cd3b2de5b113d79a2edd185789fde))
|
|
300
|
-
|
|
301
|
-
### ⚠️ BREAKING CHANGES TO EXPERIMENTAL FEATURES
|
|
302
|
-
|
|
303
|
-
- esbuild minimum version updated to `^0.11.0` which includes [breaking changes re how some files are interpreted](https://github.com/evanw/esbuild/releases/tag/v0.10.0) as well as [updated behaviour for entry points](https://github.com/evanw/esbuild/releases/tag/v0.11.0); please check esbuild's change log ([35c9046](https://github.com/mrgrain/cdk-esbuild/commit/35c904666415797eb5e5f09add47edfe2979303e))
|
|
304
|
-
- use esbuild's handling of `process.env.NODE_ENV`, notably the value will now be set to `development` unless [minification](https://esbuild.github.io/api/#minify) is enabled ([04bc5ed](https://github.com/mrgrain/cdk-esbuild/commit/04bc5edb1eb40b42499ffb9dfd78dac28fea7602))
|
|
305
|
-
|
|
306
|
-
### Features
|
|
307
|
-
|
|
308
|
-
- support object maps for entry points ([62a4431](https://github.com/mrgrain/cdk-esbuild/commit/62a4431572a4b32acd45c569405d19244b1aa76a))
|
|
309
|
-
|
|
310
|
-
## [1.96.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.95.0...v1.96.0) (2021-04-11)
|
|
311
|
-
|
|
312
|
-
- update to cdk-1.96.0 ([ae26510](https://github.com/mrgrain/cdk-esbuild/commit/ae2651026617646833303f0b9259d564765273d5))
|
|
313
|
-
|
|
314
|
-
### ⚠️ BREAKING CHANGES TO EXPERIMENTAL FEATURES
|
|
315
|
-
|
|
316
|
-
- removed deprecated `projectRoot` prop, please use `buildOptions.absWorkingPath` instead ([40e7ab0](https://github.com/mrgrain/cdk-esbuild/commit/40e7ab0ccd6fa52727f548168cbbc05afcfe4b16))
|
|
317
|
-
|
|
318
|
-
## [1.95.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.94.1...v1.95.0) (2021-03-28)
|
|
319
|
-
|
|
320
|
-
- update to cdk-1.95.0 ([0a98ef3](https://github.com/mrgrain/cdk-esbuild/commit/0a98ef311d92e1366f535bf18d7a5f10ac6ad02a))
|
|
321
|
-
|
|
322
|
-
### ⚠️ BREAKING CHANGES TO EXPERIMENTAL FEATURES
|
|
323
|
-
|
|
324
|
-
- exported `TypeScriptAsset` & `JavaScriptAsset` are now implementing `s3.Asset` and replace the previously deprecated aliases for code classes of the same name; replace any previous use with `TypeScriptCode` & `JavaScriptCode` for lambda functions ([9b86eab](https://github.com/mrgrain/cdk-esbuild/commit/9b86eab91f82e66088a25248d7a4c754dbe73d85))
|
|
325
|
-
|
|
326
|
-
### Features
|
|
327
|
-
|
|
328
|
-
- added various InlineCode constructs using the transform api ([6ef1c97](https://github.com/mrgrain/cdk-esbuild/commit/6ef1c9756f22256c008e1f9725ea3b5b5a176e3c))
|
|
329
|
-
- support added for `outfile` build option ([90ef5ec](https://github.com/mrgrain/cdk-esbuild/commit/90ef5ecb5906e0f2fc76a933b9f0067f1aae6428))
|
|
330
|
-
|
|
331
|
-
### [1.94.1](https://github.com/mrgrain/cdk-esbuild/compare/v1.94.0...v1.94.1) (2021-03-17)
|
|
332
|
-
|
|
333
|
-
### Bug Fixes
|
|
334
|
-
|
|
335
|
-
- change cdk version constraints to work with patches ([fa0fa5f](https://github.com/mrgrain/cdk-esbuild/commit/fa0fa5fbdf608b14faf7a5e6132016fb6f2e393e))
|
|
336
|
-
|
|
337
|
-
## [1.94.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.93.1...v1.94.0) (2021-03-16)
|
|
338
|
-
|
|
339
|
-
- update to cdk-1.94.0 ([1623339](https://github.com/mrgrain/cdk-esbuild/commit/162333930a7534277c5ce4318f81df1fc954fe5e))
|
|
340
|
-
|
|
341
|
-
### ⚠️ BREAKING CHANGES TO EXPERIMENTAL FEATURES
|
|
342
|
-
|
|
343
|
-
- deprecated ~~`TypeScriptAsset`~~ & ~~`JavaScriptAsset`~~ in favour of `TypeScriptCode` & `JavaScriptCode` ([f31074e](https://github.com/mrgrain/cdk-esbuild/commit/f31074eeeca039dc847f199eeff88313b61605a1))
|
|
344
|
-
- deprecated ~~`projectRoot`~~ in favour of `buildOptions.absWorkDir` ([ef7ae23](https://github.com/mrgrain/cdk-esbuild/commit/ef7ae237827e381fa2708d67a2d68214a33ab41b)) \
|
|
345
|
-
Now `absWorkDir` will take priority, then `projectRoot`. If neither are provided it falls back to the current working directory, which is esbuild's default behaviour. \
|
|
346
|
-
**The automatic project root detection has been removed.**
|
|
347
|
-
- upgraded esbuild dependency requirement to `^0.9.0` which [contains breaking changes](https://github.com/evanw/esbuild/releases/tag/v0.9.0) ([f27d987](https://github.com/mrgrain/cdk-esbuild/commit/f27d987183034d4fbf88905769d8cd7d3f93db4a))
|
|
348
|
-
|
|
349
|
-
### Features
|
|
350
|
-
|
|
351
|
-
- set sensible defaults for website deployment ([a7a925d](https://github.com/mrgrain/cdk-esbuild/commit/a7a925da367d88184058719a56af55882e7c7aff))
|
|
352
|
-
- new `copyDir` prop to copy additional files into the output ([1dccb25](https://github.com/mrgrain/cdk-esbuild/commit/1dccb254c189500dc48371eeeeed0545c3116863))
|
|
353
|
-
- support for multiple `entryPoints` ([e41757b](https://github.com/mrgrain/cdk-esbuild/commit/e41757bb634d24d4c45ecf98ba981d28df258ce6))
|
|
354
|
-
- `bundleOptions.outdir` can now be provided as an additional path prefix for rendered files in the auto-generated cdk output directory ([9be0f62](https://github.com/mrgrain/cdk-esbuild/commit/9be0f626460b5fd1c4bfa131a5f57124bbdb4129))
|
|
355
|
-
|
|
356
|
-
## [1.93.1](https://github.com/mrgrain/cdk-esbuild/compare/v1.93.0...v1.93.1) (2021-03-12)
|
|
357
|
-
|
|
358
|
-
Required release to make version available on npm.
|
|
359
|
-
|
|
360
|
-
## [1.93.0](https://github.com/mrgrain/cdk-esbuild/compare/v1.92.0...v1.93.0) (2021-03-12)
|
|
361
|
-
|
|
362
|
-
- update to cdk-1.93.0 ([2dd043b](https://github.com/mrgrain/cdk-esbuild/commit/2dd043b49b606dc6ebcf13c435a5665f5028fce5))
|
|
363
|
-
|
|
364
|
-
### ⚠️ BREAKING CHANGES TO EXPERIMENTAL FEATURES
|
|
365
|
-
|
|
366
|
-
- `projectRoot` auto detection now searches upwards from the entry point, instead of current working directory
|
|
367
|
-
- deprecated ~~`TypeScriptAsset`~~ & ~~`JavaScriptAsset`~~ in favour of `TypeScriptCode` & `JavaScriptCode` ([f31074e](https://github.com/mrgrain/cdk-esbuild/commit/f31074eeeca039dc847f199eeff88313b61605a1))
|
|
368
|
-
|
|
369
|
-
### Features
|
|
370
|
-
|
|
371
|
-
- added implementation of S3 deployment source which can be used for static website deployment ([f31074e](https://github.com/mrgrain/cdk-esbuild/commit/f31074eeeca039dc847f199eeff88313b61605a1))
|
|
12
|
+
* replace mocked with version from jest-mock ([2e9761d](https://github.com/mrgrain/cdk-esbuild/commit/2e9761d5f53293a6a840897e218c2e79a6b71c66))
|
|
13
|
+
* replace removed Node.js type ([e58b268](https://github.com/mrgrain/cdk-esbuild/commit/e58b2685c519cb9c4d7e1a148c4fc9f388d3ff90))
|
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
_CDK constructs for [esbuild](https://github.com/evanw/esbuild), an extremely fast JavaScript bundler_
|
|
4
4
|
|
|
5
|
-
> ⚠️ This is
|
|
5
|
+
> ⚠️ This version is compatible with AWS CDK v2. For the previous, AWS CDK v1 compatible release, see [cdk-esbuild@v2](https://github.com/mrgrain/cdk-esbuild/tree/v2)
|
|
6
6
|
|
|
7
7
|
[Getting started](#getting-started) | [Migrating to v3](#migrating-to-v3) |
|
|
8
8
|
[Documentation](#documentation) | [API Reference](#api-reference) | [Versioning](#versioning)
|
|
@@ -40,10 +40,10 @@ npm install @mrgrain/cdk-esbuild@^3.0.0 esbuild
|
|
|
40
40
|
|
|
41
41
|
> 💡 See [Lambda Function](examples/lambda) for a complete working example of a how to deploy a lambda function.
|
|
42
42
|
|
|
43
|
-
Use `TypeScriptCode` as the `code` of a [lambda function](https://docs.aws.amazon.com/cdk/api/
|
|
43
|
+
Use `TypeScriptCode` as the `code` of a [lambda function](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_lambda.Function.html#code):
|
|
44
44
|
|
|
45
45
|
```ts
|
|
46
|
-
import * as lambda from "
|
|
46
|
+
import * as lambda from "aws-cdk-lib/aws-lambda";
|
|
47
47
|
import { TypeScriptCode } from "@mrgrain/cdk-esbuild";
|
|
48
48
|
|
|
49
49
|
const bundledCode = new TypeScriptCode("src/index.ts");
|
|
@@ -62,8 +62,8 @@ const fn = new lambda.Function(stack, "MyFunction", {
|
|
|
62
62
|
Use `TypeScriptSource` as one of the `sources` of a [static website deployment](https://docs.aws.amazon.com/cdk/api/latest/docs/aws-s3-deployment-readme.html#roadmap):
|
|
63
63
|
|
|
64
64
|
```ts
|
|
65
|
-
import * as s3 from "
|
|
66
|
-
import * as s3deploy from "
|
|
65
|
+
import * as s3 from "aws-cdk-lib/aws-s3";
|
|
66
|
+
import * as s3deploy from "aws-cdk-lib/aws-s3-deployment";
|
|
67
67
|
import { TypeScriptSource } from "@mrgrain/cdk-esbuild";
|
|
68
68
|
|
|
69
69
|
const websiteBundle = new TypeScriptSource("src/index.tsx");
|
|
@@ -87,8 +87,14 @@ new s3deploy.BucketDeployment(stack, "DeployWebsite", {
|
|
|
87
87
|
|
|
88
88
|
Synthetics runs a canary to produce traffic to an application for monitoring purposes. Use `TypeScriptCode` as the `code` of a Canary test:
|
|
89
89
|
|
|
90
|
+
> ℹ️ This feature depends on the `@aws-cdk/aws-synthetics-alpha` package which is a developer preview. You may need to update your source code when upgrading to a newer version of this package.
|
|
91
|
+
>
|
|
92
|
+
> ```
|
|
93
|
+
> npm i @aws-cdk/aws-synthetics-alpha
|
|
94
|
+
> ```
|
|
95
|
+
|
|
90
96
|
```ts
|
|
91
|
-
import * as synthetics from "@aws-cdk/aws-synthetics";
|
|
97
|
+
import * as synthetics from "@aws-cdk/aws-synthetics-alpha";
|
|
92
98
|
import { TypeScriptCode } from "@mrgrain/cdk-esbuild";
|
|
93
99
|
|
|
94
100
|
const bundledCode = new TypeScriptCode("src/index.ts", {
|
|
@@ -110,7 +116,7 @@ const canary = new synthetics.Canary(stack, "MyCanary", {
|
|
|
110
116
|
|
|
111
117
|
The package exports various different constructs for use with existing CDK features. A major guiding design principal for this package is to _extend, don't replace_. Expect constructs that you can provide as props, not complete replacements.
|
|
112
118
|
|
|
113
|
-
For use in **Lambda Functions** and **Synthetic Canaries**, the following classes implement `lambda.Code` ([reference](https://docs.aws.amazon.com/cdk/api/
|
|
119
|
+
For use in **Lambda Functions** and **Synthetic Canaries**, the following classes implement `lambda.Code` ([reference](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_lambda.Code.html)) and `synthetics.Code` ([reference](https://docs.aws.amazon.com/cdk/api/v2/docs/@aws-cdk_aws-synthetics-alpha.Code.html)):
|
|
114
120
|
|
|
115
121
|
- `TypeScriptCode` & `JavaScriptCode`
|
|
116
122
|
|
|
@@ -121,16 +127,16 @@ Inline code is only supported by **Lambda**:
|
|
|
121
127
|
|
|
122
128
|
For use with **S3 bucket deployments**, classes implementing `s3deploy.ISource` ([reference](https://docs.aws.amazon.com/cdk/api/latest/docs/aws-s3-deployment-readme.html)):
|
|
123
129
|
|
|
124
|
-
-
|
|
130
|
+
- `TypeScriptSource` & `JavaScriptSource`
|
|
125
131
|
|
|
126
132
|
> _Code and Source constructs seamlessly plugin to high-level CDK features. They share the same set of parameters, props and build options._
|
|
127
133
|
|
|
128
134
|
Underlying classes power the other features. You normally won't have to use them, but they are there if you need them:
|
|
129
135
|
|
|
130
|
-
- `TypeScriptAsset` & `JavaScriptAsset` implements `s3.Asset` ([reference](https://docs.aws.amazon.com/cdk/api/
|
|
136
|
+
- `TypeScriptAsset` & `JavaScriptAsset` implements `s3.Asset` ([reference](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_s3_assets.Asset.html)) \
|
|
131
137
|
creates an asset uploaded to S3 which can be referenced by other constructs
|
|
132
138
|
|
|
133
|
-
- `EsbuildBundler` implements `core.BundlingOptions` ([reference](https://docs.aws.amazon.com/cdk/api/
|
|
139
|
+
- `EsbuildBundler` implements `core.BundlingOptions` ([reference](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.BundlingOptions.html)) \
|
|
134
140
|
provides an interface for a _esbuild_ bundler wherever needed
|
|
135
141
|
|
|
136
142
|
## [API Reference](API.md)
|