cdk-comprehend-s3olap 2.0.99 → 2.0.101
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 +7 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/cloudtrail-2013-11-01.min.json +247 -3
- package/node_modules/aws-sdk/apis/cloudtrail-2013-11-01.paginators.json +12 -0
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +1075 -1058
- package/node_modules/aws-sdk/apis/mediaconnect-2018-11-14.min.json +21 -0
- package/node_modules/aws-sdk/clients/cloudtrail.d.ts +335 -6
- package/node_modules/aws-sdk/clients/ec2.d.ts +53 -37
- package/node_modules/aws-sdk/clients/mediaconnect.d.ts +25 -1
- package/node_modules/aws-sdk/clients/rds.d.ts +18 -18
- 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 +5 -5
- package/node_modules/aws-sdk/dist/aws-sdk.js +1337 -1064
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +82 -82
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/esbuild/bin/esbuild +2 -1
- package/node_modules/esbuild/install.js +5 -4
- package/node_modules/esbuild/lib/main.d.ts +2 -0
- package/node_modules/esbuild/lib/main.js +606 -663
- package/node_modules/esbuild/package.json +23 -22
- package/node_modules/esbuild-linux-64/bin/esbuild +0 -0
- package/node_modules/esbuild-linux-64/package.json +1 -1
- package/package.json +7 -7
@@ -49,6 +49,7 @@ var knownUnixlikePackages = {
|
|
49
49
|
"sunos x64 LE": "esbuild-sunos-64"
|
50
50
|
};
|
51
51
|
var knownWebAssemblyFallbackPackages = {
|
52
|
+
"android arm LE": "@esbuild/android-arm",
|
52
53
|
"android x64 LE": "esbuild-android-64"
|
53
54
|
};
|
54
55
|
function pkgAndSubpathForCurrentPlatform() {
|
@@ -163,7 +164,7 @@ by esbuild to install the correct binary executable for your current platform.`)
|
|
163
164
|
"node_modules",
|
164
165
|
".cache",
|
165
166
|
"esbuild",
|
166
|
-
`pnpapi-${pkg}-${"0.15.
|
167
|
+
`pnpapi-${pkg}-${"0.15.8"}-${path.basename(subpath)}`
|
167
168
|
);
|
168
169
|
if (!fs.existsSync(binTargetPath)) {
|
169
170
|
fs.mkdirSync(path.dirname(binTargetPath), { recursive: true });
|
@@ -48,6 +48,7 @@ var knownUnixlikePackages = {
|
|
48
48
|
"sunos x64 LE": "esbuild-sunos-64"
|
49
49
|
};
|
50
50
|
var knownWebAssemblyFallbackPackages = {
|
51
|
+
"android arm LE": "@esbuild/android-arm",
|
51
52
|
"android x64 LE": "esbuild-android-64"
|
52
53
|
};
|
53
54
|
function pkgAndSubpathForCurrentPlatform() {
|
@@ -89,8 +90,8 @@ function validateBinaryVersion(...command) {
|
|
89
90
|
const stdout = child_process.execFileSync(command.shift(), command, {
|
90
91
|
stdio: "pipe"
|
91
92
|
}).toString().trim();
|
92
|
-
if (stdout !== "0.15.
|
93
|
-
throw new Error(`Expected ${JSON.stringify("0.15.
|
93
|
+
if (stdout !== "0.15.8") {
|
94
|
+
throw new Error(`Expected ${JSON.stringify("0.15.8")} but got ${JSON.stringify(stdout)}`);
|
94
95
|
}
|
95
96
|
}
|
96
97
|
function isYarn() {
|
@@ -142,7 +143,7 @@ function installUsingNPM(pkg, subpath, binPath) {
|
|
142
143
|
try {
|
143
144
|
fs2.writeFileSync(path2.join(installDir, "package.json"), "{}");
|
144
145
|
child_process.execSync(
|
145
|
-
`npm install --loglevel=error --prefer-offline --no-audit --progress=false ${pkg}@${"0.15.
|
146
|
+
`npm install --loglevel=error --prefer-offline --no-audit --progress=false ${pkg}@${"0.15.8"}`,
|
146
147
|
{ cwd: installDir, stdio: "pipe", env }
|
147
148
|
);
|
148
149
|
const installedBinPath = path2.join(installDir, "node_modules", pkg, subpath);
|
@@ -193,7 +194,7 @@ function maybeOptimizePackage(binPath) {
|
|
193
194
|
}
|
194
195
|
}
|
195
196
|
async function downloadDirectlyFromNPM(pkg, subpath, binPath) {
|
196
|
-
const url = `https://registry.npmjs.org/${pkg}/-/${pkg}-${"0.15.
|
197
|
+
const url = `https://registry.npmjs.org/${pkg}/-/${pkg}-${"0.15.8"}.tgz`;
|
197
198
|
console.error(`[esbuild] Trying to download ${JSON.stringify(url)}`);
|
198
199
|
try {
|
199
200
|
fs2.writeFileSync(binPath, extractFileFromTarGzip(await fetch(url), subpath));
|
@@ -61,6 +61,8 @@ interface CommonOptions {
|
|
61
61
|
jsxImportSource?: string;
|
62
62
|
/** Documentation: https://esbuild.github.io/api/#jsx-development */
|
63
63
|
jsxDev?: boolean;
|
64
|
+
/** Documentation: https://esbuild.github.io/api/#jsx-side-effects */
|
65
|
+
jsxSideEffects?: boolean;
|
64
66
|
|
65
67
|
/** Documentation: https://esbuild.github.io/api/#define */
|
66
68
|
define?: { [key: string]: string };
|