@mrgrain/cdk-esbuild 3.0.0 → 3.3.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 +294 -85
- package/.projenrc.ts +42 -32
- package/API.md +120 -0
- package/CHANGELOG.md +2 -366
- package/LICENSE +1 -1
- package/README.md +18 -12
- package/lib/asset.d.ts +1 -6
- package/lib/asset.js +3 -3
- package/lib/bundler.d.ts +11 -14
- package/lib/bundler.js +7 -8
- package/lib/code.d.ts +1 -35
- package/lib/code.js +4 -23
- package/lib/esbuild-types.d.ts +111 -272
- package/lib/esbuild-types.js +1 -1
- package/lib/inline-code.d.ts +14 -37
- package/lib/inline-code.js +13 -33
- package/lib/source.d.ts +0 -35
- package/lib/source.js +3 -26
- 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,
|
|
@@ -182,8 +188,12 @@ new TypeScriptSourceFile(project, 'src/esbuild-types.ts', {
|
|
|
182
188
|
|
|
183
189
|
['CommonOptions', 'BuildOptions', 'TransformOptions'].forEach(readonlyInterface);
|
|
184
190
|
removeFromInterface('BuildOptions', ['entryPoints', 'stdin', 'plugins', 'watch']);
|
|
191
|
+
esbuildTypes.getInterface('CommonOptions')?.getProperty('mangleProps')?.setType('any');
|
|
192
|
+
esbuildTypes.getInterface('CommonOptions')?.getProperty('reserveProps')?.setType('any');
|
|
185
193
|
esbuildTypes.getInterface('TransformOptions')?.getProperty('tsconfigRaw')?.setType('string');
|
|
186
194
|
},
|
|
187
195
|
});
|
|
188
196
|
|
|
197
|
+
|
|
198
|
+
// Synth project
|
|
189
199
|
project.synth();
|
package/API.md
CHANGED
|
@@ -229,6 +229,18 @@ 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
|
+
Documentation: https://esbuild.github.io/api/#drop.
|
|
241
|
+
|
|
242
|
+
---
|
|
243
|
+
|
|
232
244
|
##### `entryNames`<sup>Optional</sup> <a name="@mrgrain/cdk-esbuild.BuildOptions.property.entryNames"></a>
|
|
233
245
|
|
|
234
246
|
```typescript
|
|
@@ -433,6 +445,42 @@ Documentation: https://esbuild.github.io/api/#mainFields.
|
|
|
433
445
|
|
|
434
446
|
---
|
|
435
447
|
|
|
448
|
+
##### `mangleCache`<sup>Optional</sup> <a name="@mrgrain/cdk-esbuild.BuildOptions.property.mangleCache"></a>
|
|
449
|
+
|
|
450
|
+
```typescript
|
|
451
|
+
public readonly mangleCache: {[ key: string ]: string | boolean};
|
|
452
|
+
```
|
|
453
|
+
|
|
454
|
+
- *Type:* {[ key: string ]: `string` | `boolean`}
|
|
455
|
+
|
|
456
|
+
Documentation: https://esbuild.github.io/api/#mangle-props.
|
|
457
|
+
|
|
458
|
+
---
|
|
459
|
+
|
|
460
|
+
##### `mangleProps`<sup>Optional</sup> <a name="@mrgrain/cdk-esbuild.BuildOptions.property.mangleProps"></a>
|
|
461
|
+
|
|
462
|
+
```typescript
|
|
463
|
+
public readonly mangleProps: any;
|
|
464
|
+
```
|
|
465
|
+
|
|
466
|
+
- *Type:* `any`
|
|
467
|
+
|
|
468
|
+
Documentation: https://esbuild.github.io/api/#mangle-props.
|
|
469
|
+
|
|
470
|
+
---
|
|
471
|
+
|
|
472
|
+
##### `mangleQuoted`<sup>Optional</sup> <a name="@mrgrain/cdk-esbuild.BuildOptions.property.mangleQuoted"></a>
|
|
473
|
+
|
|
474
|
+
```typescript
|
|
475
|
+
public readonly mangleQuoted: boolean;
|
|
476
|
+
```
|
|
477
|
+
|
|
478
|
+
- *Type:* `boolean`
|
|
479
|
+
|
|
480
|
+
Documentation: https://esbuild.github.io/api/#mangle-props.
|
|
481
|
+
|
|
482
|
+
---
|
|
483
|
+
|
|
436
484
|
##### `metafile`<sup>Optional</sup> <a name="@mrgrain/cdk-esbuild.BuildOptions.property.metafile"></a>
|
|
437
485
|
|
|
438
486
|
```typescript
|
|
@@ -601,6 +649,18 @@ Documentation: https://esbuild.github.io/api/#pure.
|
|
|
601
649
|
|
|
602
650
|
---
|
|
603
651
|
|
|
652
|
+
##### `reserveProps`<sup>Optional</sup> <a name="@mrgrain/cdk-esbuild.BuildOptions.property.reserveProps"></a>
|
|
653
|
+
|
|
654
|
+
```typescript
|
|
655
|
+
public readonly reserveProps: any;
|
|
656
|
+
```
|
|
657
|
+
|
|
658
|
+
- *Type:* `any`
|
|
659
|
+
|
|
660
|
+
Documentation: https://esbuild.github.io/api/#mangle-props.
|
|
661
|
+
|
|
662
|
+
---
|
|
663
|
+
|
|
604
664
|
##### `resolveExtensions`<sup>Optional</sup> <a name="@mrgrain/cdk-esbuild.BuildOptions.property.resolveExtensions"></a>
|
|
605
665
|
|
|
606
666
|
```typescript
|
|
@@ -1059,6 +1119,18 @@ Documentation: https://esbuild.github.io/api/#define.
|
|
|
1059
1119
|
|
|
1060
1120
|
---
|
|
1061
1121
|
|
|
1122
|
+
##### `drop`<sup>Optional</sup> <a name="@mrgrain/cdk-esbuild.TransformOptions.property.drop"></a>
|
|
1123
|
+
|
|
1124
|
+
```typescript
|
|
1125
|
+
public readonly drop: string[];
|
|
1126
|
+
```
|
|
1127
|
+
|
|
1128
|
+
- *Type:* `string`[]
|
|
1129
|
+
|
|
1130
|
+
Documentation: https://esbuild.github.io/api/#drop.
|
|
1131
|
+
|
|
1132
|
+
---
|
|
1133
|
+
|
|
1062
1134
|
##### `footer`<sup>Optional</sup> <a name="@mrgrain/cdk-esbuild.TransformOptions.property.footer"></a>
|
|
1063
1135
|
|
|
1064
1136
|
```typescript
|
|
@@ -1199,6 +1271,42 @@ Documentation: https://esbuild.github.io/api/#log-limit.
|
|
|
1199
1271
|
|
|
1200
1272
|
---
|
|
1201
1273
|
|
|
1274
|
+
##### `mangleCache`<sup>Optional</sup> <a name="@mrgrain/cdk-esbuild.TransformOptions.property.mangleCache"></a>
|
|
1275
|
+
|
|
1276
|
+
```typescript
|
|
1277
|
+
public readonly mangleCache: {[ key: string ]: string | boolean};
|
|
1278
|
+
```
|
|
1279
|
+
|
|
1280
|
+
- *Type:* {[ key: string ]: `string` | `boolean`}
|
|
1281
|
+
|
|
1282
|
+
Documentation: https://esbuild.github.io/api/#mangle-props.
|
|
1283
|
+
|
|
1284
|
+
---
|
|
1285
|
+
|
|
1286
|
+
##### `mangleProps`<sup>Optional</sup> <a name="@mrgrain/cdk-esbuild.TransformOptions.property.mangleProps"></a>
|
|
1287
|
+
|
|
1288
|
+
```typescript
|
|
1289
|
+
public readonly mangleProps: any;
|
|
1290
|
+
```
|
|
1291
|
+
|
|
1292
|
+
- *Type:* `any`
|
|
1293
|
+
|
|
1294
|
+
Documentation: https://esbuild.github.io/api/#mangle-props.
|
|
1295
|
+
|
|
1296
|
+
---
|
|
1297
|
+
|
|
1298
|
+
##### `mangleQuoted`<sup>Optional</sup> <a name="@mrgrain/cdk-esbuild.TransformOptions.property.mangleQuoted"></a>
|
|
1299
|
+
|
|
1300
|
+
```typescript
|
|
1301
|
+
public readonly mangleQuoted: boolean;
|
|
1302
|
+
```
|
|
1303
|
+
|
|
1304
|
+
- *Type:* `boolean`
|
|
1305
|
+
|
|
1306
|
+
Documentation: https://esbuild.github.io/api/#mangle-props.
|
|
1307
|
+
|
|
1308
|
+
---
|
|
1309
|
+
|
|
1202
1310
|
##### `minify`<sup>Optional</sup> <a name="@mrgrain/cdk-esbuild.TransformOptions.property.minify"></a>
|
|
1203
1311
|
|
|
1204
1312
|
```typescript
|
|
@@ -1259,6 +1367,18 @@ Documentation: https://esbuild.github.io/api/#pure.
|
|
|
1259
1367
|
|
|
1260
1368
|
---
|
|
1261
1369
|
|
|
1370
|
+
##### `reserveProps`<sup>Optional</sup> <a name="@mrgrain/cdk-esbuild.TransformOptions.property.reserveProps"></a>
|
|
1371
|
+
|
|
1372
|
+
```typescript
|
|
1373
|
+
public readonly reserveProps: any;
|
|
1374
|
+
```
|
|
1375
|
+
|
|
1376
|
+
- *Type:* `any`
|
|
1377
|
+
|
|
1378
|
+
Documentation: https://esbuild.github.io/api/#mangle-props.
|
|
1379
|
+
|
|
1380
|
+
---
|
|
1381
|
+
|
|
1262
1382
|
##### `sourcefile`<sup>Optional</sup> <a name="@mrgrain/cdk-esbuild.TransformOptions.property.sourcefile"></a>
|
|
1263
1383
|
|
|
1264
1384
|
```typescript
|
package/CHANGELOG.md
CHANGED
|
@@ -1,371 +1,7 @@
|
|
|
1
1
|
|
|
2
|
-
## [3.
|
|
2
|
+
## [3.3.0](https://github.com/mrgrain/cdk-esbuild/compare/v3.2.0...v3.3.0) (2022-03-06)
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
### ⚠ BREAKING CHANGES
|
|
6
|
-
|
|
7
|
-
* package now requires AWS CDK v2
|
|
8
|
-
|
|
9
|
-
### Features
|
|
10
|
-
|
|
11
|
-
* upgrade to AWS CDK v2 ([c83b3e4](https://github.com/mrgrain/cdk-esbuild/commit/c83b3e47ad5d6d325a1ca1fa4e450bd92d7276d2))
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
### Bug Fixes
|
|
15
|
-
|
|
16
|
-
* remove imports from aws-cdk-lib/core ([68ee09a](https://github.com/mrgrain/cdk-esbuild/commit/68ee09ab7dbf9cf5d0e8e8ca9eda5ea24fedae69))
|
|
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
5
|
### Features
|
|
370
6
|
|
|
371
|
-
|
|
7
|
+
* support mangleQuoted option ([f4d8859](https://github.com/mrgrain/cdk-esbuild/commit/f4d88597c2f93064f7e3f6d4f591630eacfe7b80))
|