@aws-sdk/util-locate-window 3.36.0 → 3.47.1

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,41 @@
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.47.1](https://github.com/aws/aws-sdk-js-v3/compare/v3.47.0-release-test-1...v3.47.1) (2022-01-20)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/util-locate-window
9
+
10
+
11
+
12
+
13
+
14
+ # [3.47.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.46.0...v3.47.0) (2022-01-15)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/util-locate-window
17
+
18
+
19
+
20
+
21
+
22
+ # [3.46.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.45.0...v3.46.0) (2022-01-07)
23
+
24
+
25
+ ### Features
26
+
27
+ * **packages:** end support for Node.js 10.x ([#3141](https://github.com/aws/aws-sdk-js-v3/issues/3141)) ([1a62865](https://github.com/aws/aws-sdk-js-v3/commit/1a6286513f7cdb556708845c512861c5f92eb883))
28
+
29
+
30
+
31
+
32
+
33
+ # [3.37.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.36.1...v3.37.0) (2021-10-15)
34
+
35
+ **Note:** Version bump only for package @aws-sdk/util-locate-window
36
+
37
+
38
+
39
+
40
+
6
41
  # [3.36.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.35.0...v3.36.0) (2021-10-08)
7
42
 
8
43
 
@@ -1,6 +1,2 @@
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
- */
1
+
6
2
  export declare function locateWindow(): Window;
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "@aws-sdk/util-locate-window",
3
- "version": "3.36.0",
3
+ "version": "3.47.1",
4
4
  "scripts": {
5
- "build": "yarn build:cjs && yarn build:es && yarn build:types",
5
+ "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
6
6
  "build:cjs": "tsc -p tsconfig.cjs.json",
7
7
  "build:es": "tsc -p tsconfig.es.json",
8
8
  "build:types": "tsc -p tsconfig.types.json",
9
- "downlevel-dts": "downlevel-dts dist-types dist-types/ts3.4",
9
+ "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
10
+ "clean": "rimraf ./dist-*",
10
11
  "test": "jest"
11
12
  },
12
13
  "author": {
@@ -18,16 +19,13 @@
18
19
  "tslib": "^2.3.0"
19
20
  },
20
21
  "devDependencies": {
21
- "@types/jest": "^26.0.4",
22
- "@types/node": "^10.0.0",
23
- "jest": "^26.1.0",
24
- "typescript": "~4.3.5"
22
+ "@types/node": "^10.0.0"
25
23
  },
26
24
  "main": "./dist-cjs/index.js",
27
25
  "module": "./dist-es/index.js",
28
26
  "types": "./dist-types/index.d.ts",
29
27
  "engines": {
30
- "node": ">= 10.0.0"
28
+ "node": ">= 12.0.0"
31
29
  },
32
30
  "typesVersions": {
33
31
  "<4.0": {