cdk-comprehend-s3olap 2.0.50 → 2.0.51
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/.jsii +4 -4
- package/lib/cdk-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/CHANGELOG.md +6 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/es-2015-01-01.min.json +3 -0
- package/node_modules/aws-sdk/apis/lookoutvision-2020-11-20.min.json +22 -2
- package/node_modules/aws-sdk/apis/opensearch-2021-01-01.min.json +3 -0
- package/node_modules/aws-sdk/clients/ec2.d.ts +23 -23
- package/node_modules/aws-sdk/clients/es.d.ts +7 -3
- package/node_modules/aws-sdk/clients/lookoutvision.d.ts +39 -7
- package/node_modules/aws-sdk/clients/opensearch.d.ts +7 -3
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +4 -4
- package/node_modules/aws-sdk/dist/aws-sdk.js +3 -3
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +2 -2
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/esbuild/install.js +4 -4
- package/node_modules/esbuild/lib/main.d.ts +5 -1
- package/node_modules/esbuild/lib/main.js +13 -7
- package/node_modules/esbuild/package.json +21 -21
- package/node_modules/esbuild-linux-64/bin/esbuild +0 -0
- package/node_modules/esbuild-linux-64/package.json +1 -1
- package/package.json +5 -5
@@ -88,8 +88,8 @@ function validateBinaryVersion(...command) {
|
|
88
88
|
const stdout = child_process.execFileSync(command.shift(), command, {
|
89
89
|
stdio: "pipe"
|
90
90
|
}).toString().trim();
|
91
|
-
if (stdout !== "0.14.
|
92
|
-
throw new Error(`Expected ${JSON.stringify("0.14.
|
91
|
+
if (stdout !== "0.14.51") {
|
92
|
+
throw new Error(`Expected ${JSON.stringify("0.14.51")} but got ${JSON.stringify(stdout)}`);
|
93
93
|
}
|
94
94
|
}
|
95
95
|
function isYarn() {
|
@@ -141,7 +141,7 @@ function installUsingNPM(pkg, subpath, binPath) {
|
|
141
141
|
try {
|
142
142
|
fs2.writeFileSync(path2.join(installDir, "package.json"), "{}");
|
143
143
|
child_process.execSync(
|
144
|
-
`npm install --loglevel=error --prefer-offline --no-audit --progress=false ${pkg}@${"0.14.
|
144
|
+
`npm install --loglevel=error --prefer-offline --no-audit --progress=false ${pkg}@${"0.14.51"}`,
|
145
145
|
{ cwd: installDir, stdio: "pipe", env }
|
146
146
|
);
|
147
147
|
const installedBinPath = path2.join(installDir, "node_modules", pkg, subpath);
|
@@ -192,7 +192,7 @@ function maybeOptimizePackage(binPath) {
|
|
192
192
|
}
|
193
193
|
}
|
194
194
|
async function downloadDirectlyFromNPM(pkg, subpath, binPath) {
|
195
|
-
const url = `https://registry.npmjs.org/${pkg}/-/${pkg}-${"0.14.
|
195
|
+
const url = `https://registry.npmjs.org/${pkg}/-/${pkg}-${"0.14.51"}.tgz`;
|
196
196
|
console.error(`[esbuild] Trying to download ${JSON.stringify(url)}`);
|
197
197
|
try {
|
198
198
|
fs2.writeFileSync(binPath, extractFileFromTarGzip(await fetch(url), subpath));
|
@@ -52,11 +52,15 @@ interface CommonOptions {
|
|
52
52
|
ignoreAnnotations?: boolean;
|
53
53
|
|
54
54
|
/** Documentation: https://esbuild.github.io/api/#jsx */
|
55
|
-
jsx?: 'transform' | 'preserve';
|
55
|
+
jsx?: 'transform' | 'preserve' | 'automatic';
|
56
56
|
/** Documentation: https://esbuild.github.io/api/#jsx-factory */
|
57
57
|
jsxFactory?: string;
|
58
58
|
/** Documentation: https://esbuild.github.io/api/#jsx-fragment */
|
59
59
|
jsxFragment?: string;
|
60
|
+
/** Documentation: https://esbuild.github.io/api/#jsx-import-source */
|
61
|
+
jsxImportSource?: string;
|
62
|
+
/** Documentation: https://esbuild.github.io/api/#jsx-development */
|
63
|
+
jsxDev?: boolean;
|
60
64
|
|
61
65
|
/** Documentation: https://esbuild.github.io/api/#define */
|
62
66
|
define?: { [key: string]: string };
|
@@ -304,6 +304,8 @@ function pushCommonFlags(flags, options, keys) {
|
|
304
304
|
let jsx = getFlag(options, keys, "jsx", mustBeString);
|
305
305
|
let jsxFactory = getFlag(options, keys, "jsxFactory", mustBeString);
|
306
306
|
let jsxFragment = getFlag(options, keys, "jsxFragment", mustBeString);
|
307
|
+
let jsxImportSource = getFlag(options, keys, "jsxImportSource", mustBeString);
|
308
|
+
let jsxDev = getFlag(options, keys, "jsxDev", mustBeBoolean);
|
307
309
|
let define = getFlag(options, keys, "define", mustBeObject);
|
308
310
|
let logOverride = getFlag(options, keys, "logOverride", mustBeObject);
|
309
311
|
let supported = getFlag(options, keys, "supported", mustBeObject);
|
@@ -357,6 +359,10 @@ function pushCommonFlags(flags, options, keys) {
|
|
357
359
|
flags.push(`--jsx-factory=${jsxFactory}`);
|
358
360
|
if (jsxFragment)
|
359
361
|
flags.push(`--jsx-fragment=${jsxFragment}`);
|
362
|
+
if (jsxImportSource)
|
363
|
+
flags.push(`--jsx-import-source=${jsxImportSource}`);
|
364
|
+
if (jsxDev)
|
365
|
+
flags.push(`--jsx-dev`);
|
360
366
|
if (define) {
|
361
367
|
for (let key in define) {
|
362
368
|
if (key.indexOf("=") >= 0)
|
@@ -749,8 +755,8 @@ function createChannel(streamIn) {
|
|
749
755
|
if (isFirstPacket) {
|
750
756
|
isFirstPacket = false;
|
751
757
|
let binaryVersion = String.fromCharCode(...bytes);
|
752
|
-
if (binaryVersion !== "0.14.
|
753
|
-
throw new Error(`Cannot start service: Host version "${"0.14.
|
758
|
+
if (binaryVersion !== "0.14.51") {
|
759
|
+
throw new Error(`Cannot start service: Host version "${"0.14.51"}" does not match binary version ${JSON.stringify(binaryVersion)}`);
|
754
760
|
}
|
755
761
|
return;
|
756
762
|
}
|
@@ -1873,7 +1879,7 @@ if (process.env.ESBUILD_WORKER_THREADS !== "0") {
|
|
1873
1879
|
}
|
1874
1880
|
}
|
1875
1881
|
var _a;
|
1876
|
-
var isInternalWorkerThread = ((_a = worker_threads == null ? void 0 : worker_threads.workerData) == null ? void 0 : _a.esbuildVersion) === "0.14.
|
1882
|
+
var isInternalWorkerThread = ((_a = worker_threads == null ? void 0 : worker_threads.workerData) == null ? void 0 : _a.esbuildVersion) === "0.14.51";
|
1877
1883
|
var esbuildCommandAndArgs = () => {
|
1878
1884
|
if ((!ESBUILD_BINARY_PATH || false) && (path2.basename(__filename) !== "main.js" || path2.basename(__dirname) !== "lib")) {
|
1879
1885
|
throw new Error(
|
@@ -1939,7 +1945,7 @@ var fsAsync = {
|
|
1939
1945
|
}
|
1940
1946
|
}
|
1941
1947
|
};
|
1942
|
-
var version = "0.14.
|
1948
|
+
var version = "0.14.51";
|
1943
1949
|
var build = (options) => ensureServiceIsRunning().build(options);
|
1944
1950
|
var serve = (serveOptions, buildOptions) => ensureServiceIsRunning().serve(serveOptions, buildOptions);
|
1945
1951
|
var transform = (input, options) => ensureServiceIsRunning().transform(input, options);
|
@@ -2050,7 +2056,7 @@ var ensureServiceIsRunning = () => {
|
|
2050
2056
|
if (longLivedService)
|
2051
2057
|
return longLivedService;
|
2052
2058
|
let [command, args] = esbuildCommandAndArgs();
|
2053
|
-
let child = child_process.spawn(command, args.concat(`--service=${"0.14.
|
2059
|
+
let child = child_process.spawn(command, args.concat(`--service=${"0.14.51"}`, "--ping"), {
|
2054
2060
|
windowsHide: true,
|
2055
2061
|
stdio: ["pipe", "pipe", "inherit"],
|
2056
2062
|
cwd: defaultWD
|
@@ -2164,7 +2170,7 @@ var runServiceSync = (callback) => {
|
|
2164
2170
|
esbuild: node_exports
|
2165
2171
|
});
|
2166
2172
|
callback(service);
|
2167
|
-
let stdout = child_process.execFileSync(command, args.concat(`--service=${"0.14.
|
2173
|
+
let stdout = child_process.execFileSync(command, args.concat(`--service=${"0.14.51"}`), {
|
2168
2174
|
cwd: defaultWD,
|
2169
2175
|
windowsHide: true,
|
2170
2176
|
input: stdin,
|
@@ -2180,7 +2186,7 @@ var workerThreadService = null;
|
|
2180
2186
|
var startWorkerThreadService = (worker_threads2) => {
|
2181
2187
|
let { port1: mainPort, port2: workerPort } = new worker_threads2.MessageChannel();
|
2182
2188
|
let worker = new worker_threads2.Worker(__filename, {
|
2183
|
-
workerData: { workerPort, defaultWD, esbuildVersion: "0.14.
|
2189
|
+
workerData: { workerPort, defaultWD, esbuildVersion: "0.14.51" },
|
2184
2190
|
transferList: [workerPort],
|
2185
2191
|
execArgv: []
|
2186
2192
|
});
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "esbuild",
|
3
|
-
"version": "0.14.
|
3
|
+
"version": "0.14.51",
|
4
4
|
"description": "An extremely fast JavaScript and CSS bundler and minifier.",
|
5
5
|
"repository": "https://github.com/evanw/esbuild",
|
6
6
|
"scripts": {
|
@@ -15,26 +15,26 @@
|
|
15
15
|
"esbuild": "bin/esbuild"
|
16
16
|
},
|
17
17
|
"optionalDependencies": {
|
18
|
-
"esbuild-android-64": "0.14.
|
19
|
-
"esbuild-android-arm64": "0.14.
|
20
|
-
"esbuild-darwin-64": "0.14.
|
21
|
-
"esbuild-darwin-arm64": "0.14.
|
22
|
-
"esbuild-freebsd-64": "0.14.
|
23
|
-
"esbuild-freebsd-arm64": "0.14.
|
24
|
-
"esbuild-linux-32": "0.14.
|
25
|
-
"esbuild-linux-64": "0.14.
|
26
|
-
"esbuild-linux-arm": "0.14.
|
27
|
-
"esbuild-linux-arm64": "0.14.
|
28
|
-
"esbuild-linux-mips64le": "0.14.
|
29
|
-
"esbuild-linux-ppc64le": "0.14.
|
30
|
-
"esbuild-linux-riscv64": "0.14.
|
31
|
-
"esbuild-linux-s390x": "0.14.
|
32
|
-
"esbuild-netbsd-64": "0.14.
|
33
|
-
"esbuild-openbsd-64": "0.14.
|
34
|
-
"esbuild-sunos-64": "0.14.
|
35
|
-
"esbuild-windows-32": "0.14.
|
36
|
-
"esbuild-windows-64": "0.14.
|
37
|
-
"esbuild-windows-arm64": "0.14.
|
18
|
+
"esbuild-android-64": "0.14.51",
|
19
|
+
"esbuild-android-arm64": "0.14.51",
|
20
|
+
"esbuild-darwin-64": "0.14.51",
|
21
|
+
"esbuild-darwin-arm64": "0.14.51",
|
22
|
+
"esbuild-freebsd-64": "0.14.51",
|
23
|
+
"esbuild-freebsd-arm64": "0.14.51",
|
24
|
+
"esbuild-linux-32": "0.14.51",
|
25
|
+
"esbuild-linux-64": "0.14.51",
|
26
|
+
"esbuild-linux-arm": "0.14.51",
|
27
|
+
"esbuild-linux-arm64": "0.14.51",
|
28
|
+
"esbuild-linux-mips64le": "0.14.51",
|
29
|
+
"esbuild-linux-ppc64le": "0.14.51",
|
30
|
+
"esbuild-linux-riscv64": "0.14.51",
|
31
|
+
"esbuild-linux-s390x": "0.14.51",
|
32
|
+
"esbuild-netbsd-64": "0.14.51",
|
33
|
+
"esbuild-openbsd-64": "0.14.51",
|
34
|
+
"esbuild-sunos-64": "0.14.51",
|
35
|
+
"esbuild-windows-32": "0.14.51",
|
36
|
+
"esbuild-windows-64": "0.14.51",
|
37
|
+
"esbuild-windows-arm64": "0.14.51"
|
38
38
|
},
|
39
39
|
"license": "MIT"
|
40
40
|
}
|
Binary file
|
package/package.json
CHANGED
@@ -46,7 +46,7 @@
|
|
46
46
|
"@typescript-eslint/parser": "^5",
|
47
47
|
"aws-cdk-lib": "^2.33.0",
|
48
48
|
"constructs": "^10.0.5",
|
49
|
-
"esbuild": "^0.14.
|
49
|
+
"esbuild": "^0.14.51",
|
50
50
|
"eslint": "^8",
|
51
51
|
"eslint-import-resolver-node": "^0.3.6",
|
52
52
|
"eslint-import-resolver-typescript": "^2.7.1",
|
@@ -59,7 +59,7 @@
|
|
59
59
|
"jsii-pacmak": "^1.63.1",
|
60
60
|
"json-schema": "^0.4.0",
|
61
61
|
"npm-check-updates": "^15",
|
62
|
-
"projen": "^0.60.
|
62
|
+
"projen": "^0.60.7",
|
63
63
|
"standard-version": "^9",
|
64
64
|
"ts-jest": "^27",
|
65
65
|
"typescript": "^4.7.4"
|
@@ -70,9 +70,9 @@
|
|
70
70
|
},
|
71
71
|
"dependencies": {
|
72
72
|
"aws-cdk-lib": "^2.33.0",
|
73
|
-
"aws-sdk": "^2.
|
73
|
+
"aws-sdk": "^2.1184.0",
|
74
74
|
"constructs": "^10.0.5",
|
75
|
-
"esbuild": "^0.14.
|
75
|
+
"esbuild": "^0.14.51"
|
76
76
|
},
|
77
77
|
"bundledDependencies": [
|
78
78
|
"aws-sdk",
|
@@ -92,7 +92,7 @@
|
|
92
92
|
],
|
93
93
|
"main": "lib/index.js",
|
94
94
|
"license": "Apache-2.0",
|
95
|
-
"version": "2.0.
|
95
|
+
"version": "2.0.51",
|
96
96
|
"jest": {
|
97
97
|
"testMatch": [
|
98
98
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|