Skip to content

Commit c164a49

Browse files
authored
chore(release): 2.62.2 (#23874)
See CHANGELOG
2 parents 8641449 + 20edd15 commit c164a49

File tree

5 files changed

+14
-2
lines changed

5 files changed

+14
-2
lines changed

CHANGELOG.v2.alpha.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
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.
44

5+
## [2.62.2-alpha.0](https://github.com/aws/aws-cdk/compare/v2.62.1-alpha.0...v2.62.2-alpha.0) (2023-01-27)
6+
57
## [2.62.1-alpha.0](https://github.com/aws/aws-cdk/compare/v2.62.0-alpha.0...v2.62.1-alpha.0) (2023-01-26)
68

79
## [2.62.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.61.1-alpha.0...v2.62.0-alpha.0) (2023-01-25)

CHANGELOG.v2.md

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
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.
44

5+
## [2.62.2](https://github.com/aws/aws-cdk/compare/v2.62.1...v2.62.2) (2023-01-27)
6+
7+
8+
### Bug Fixes
9+
10+
* imports from ESM modules cannot find correct type definitions ([#23870](https://github.com/aws/aws-cdk/issues/23870)) ([1b9f3f7](https://github.com/aws/aws-cdk/commit/1b9f3f7d3fa447a21e9ed38026cc428f7797390f))
11+
512
## [2.62.1](https://github.com/aws/aws-cdk/compare/v2.62.0...v2.62.1) (2023-01-26)
613

714

packages/aws-cdk-lib/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -407,6 +407,7 @@
407407
},
408408
"exports": {
409409
".": {
410+
"types": "./index.d.ts",
410411
"import": "./index.js",
411412
"require": "./lazy-index.js"
412413
},

tools/@aws-cdk/ubergen/bin/ubergen.ts

+2
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ interface LibraryReference {
4848
}
4949

5050
type Export = string | {
51+
readonly types?: string;
5152
readonly import?: string;
5253
readonly require?: string;
5354
};
@@ -275,6 +276,7 @@ async function prepareSourceFiles(libraries: readonly LibraryReference[], packag
275276
// allowed for this package: we only want to allow the exact import statements that we want to support.
276277
packageJson.exports = {
277278
'.': {
279+
types: './index.d.ts',
278280
import: './index.js',
279281
require: './lazy-index.js',
280282
},

version.v2.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"version": "2.62.1",
3-
"alphaVersion": "2.62.1-alpha.0"
2+
"version": "2.62.2",
3+
"alphaVersion": "2.62.2-alpha.0"
44
}

0 commit comments

Comments
 (0)