athena-query-execution-waiter 0.3.11 → 0.3.13
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/README.md +3 -1
- package/package.json +9 -1
package/README.md
CHANGED
|
@@ -4,6 +4,8 @@ A small library that waits for an AWS Athena query execution to complete. It pol
|
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
|
+
**@aws-sdk/client-athena** is a normal **dependency** of this package: installing `athena-query-execution-waiter` pulls in a compatible AWS SDK v3 Athena client. If your app also depends on `@aws-sdk/client-athena`, npm/yarn will dedupe when versions are compatible; otherwise you may have two copies under different semver ranges.
|
|
8
|
+
|
|
7
9
|
**yarn:**
|
|
8
10
|
|
|
9
11
|
```bash
|
|
@@ -19,7 +21,7 @@ npm install athena-query-execution-waiter
|
|
|
19
21
|
## Requirements
|
|
20
22
|
|
|
21
23
|
- **Node.js** >= 20.0.0
|
|
22
|
-
- **@aws-sdk/client-athena**
|
|
24
|
+
- **@aws-sdk/client-athena** — declared in this package’s `package.json` under `dependencies` (AWS SDK v3; version range is maintained there).
|
|
23
25
|
|
|
24
26
|
## Usage
|
|
25
27
|
|
package/package.json
CHANGED
|
@@ -53,12 +53,19 @@
|
|
|
53
53
|
"engines": {
|
|
54
54
|
"node": ">= 20.0.0"
|
|
55
55
|
},
|
|
56
|
+
"devEngines": {
|
|
57
|
+
"packageManager": {
|
|
58
|
+
"name": "yarn",
|
|
59
|
+
"version": "<2.0.0",
|
|
60
|
+
"onFail": "ignore"
|
|
61
|
+
}
|
|
62
|
+
},
|
|
56
63
|
"main": "lib/index.js",
|
|
57
64
|
"license": "Apache-2.0",
|
|
58
65
|
"publishConfig": {
|
|
59
66
|
"access": "public"
|
|
60
67
|
},
|
|
61
|
-
"version": "0.3.
|
|
68
|
+
"version": "0.3.13",
|
|
62
69
|
"jest": {
|
|
63
70
|
"coverageProvider": "v8",
|
|
64
71
|
"testMatch": [
|
|
@@ -105,5 +112,6 @@
|
|
|
105
112
|
}
|
|
106
113
|
},
|
|
107
114
|
"types": "lib/index.d.ts",
|
|
115
|
+
"packageManager": "yarn@1.22.22",
|
|
108
116
|
"//": "~~ Generated by projen. To modify, edit .projenrc.ts and run \"npx projen\"."
|
|
109
117
|
}
|