@aws-sdk/util-locate-window 3.13.1 → 3.23.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
@@ -3,6 +3,47 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.23.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.22.0...v3.23.0) (2021-07-23)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * bump up tslib to 2.3.0 ([#2601](https://github.com/aws/aws-sdk-js-v3/issues/2601)) ([7040faa](https://github.com/aws/aws-sdk-js-v3/commit/7040faac07976c1dcfd5240675b82a2f275b2a55))
12
+
13
+
14
+
15
+
16
+
17
+ # [3.22.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.21.0...v3.22.0) (2021-07-16)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **clients:** prefix `dist/` for typesVersions TS<4 ([#2580](https://github.com/aws/aws-sdk-js-v3/issues/2580)) ([dff5cd4](https://github.com/aws/aws-sdk-js-v3/commit/dff5cd4b6fa00453e938ce8f238c1542ee7ba3d6))
23
+
24
+
25
+
26
+
27
+
28
+ # [3.20.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.19.0...v3.20.0) (2021-07-02)
29
+
30
+
31
+ ### Bug Fixes
32
+
33
+ * replace prepublishOnly script with downlevel-dts ([#2537](https://github.com/aws/aws-sdk-js-v3/issues/2537)) ([63818a1](https://github.com/aws/aws-sdk-js-v3/commit/63818a1e47b08af56f092031a01bbbff0a9af590))
34
+
35
+
36
+
37
+
38
+
39
+ # [3.18.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.17.0...v3.18.0) (2021-06-04)
40
+
41
+ **Note:** Version bump only for package @aws-sdk/util-locate-window
42
+
43
+
44
+
45
+
46
+
6
47
  ## [3.13.1](https://github.com/aws/aws-sdk-js-v3/compare/v3.13.0...v3.13.1) (2021-04-22)
7
48
 
8
49
  **Note:** Version bump only for package @aws-sdk/util-locate-window
@@ -0,0 +1,6 @@
1
+ /**
2
+ * Locates the global scope for a browser or browser-like environment. If
3
+ * neither `window` nor `self` is defined by the environment, the same object
4
+ * will be returned on each invocation.
5
+ */
6
+ export declare function locateWindow(): Window;
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@aws-sdk/util-locate-window",
3
- "version": "3.13.1",
3
+ "version": "3.23.0",
4
4
  "scripts": {
5
- "prepublishOnly": "yarn build && downlevel-dts dist/types dist/types/ts3.4",
6
5
  "build:cjs": "tsc -p tsconfig.cjs.json",
7
6
  "build:es": "tsc -p tsconfig.es.json",
8
7
  "build": "yarn build:es && yarn build:cjs",
8
+ "downlevel-dts": "downlevel-dts dist/types dist/types/ts3.4",
9
9
  "test": "jest"
10
10
  },
11
11
  "author": {
@@ -14,13 +14,13 @@
14
14
  },
15
15
  "license": "Apache-2.0",
16
16
  "dependencies": {
17
- "tslib": "^2.0.0"
17
+ "tslib": "^2.3.0"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@types/jest": "^26.0.4",
21
21
  "@types/node": "^10.0.0",
22
22
  "jest": "^26.1.0",
23
- "typescript": "~4.2.4"
23
+ "typescript": "~4.3.2"
24
24
  },
25
25
  "main": "./dist/cjs/index.js",
26
26
  "module": "./dist/es/index.js",
@@ -30,8 +30,8 @@
30
30
  },
31
31
  "typesVersions": {
32
32
  "<4.0": {
33
- "types/*": [
34
- "types/ts3.4/*"
33
+ "dist/types/*": [
34
+ "dist/types/ts3.4/*"
35
35
  ]
36
36
  }
37
37
  },