@cyclonedx/cdxgen 12.1.0 → 12.1.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/lib/cli/index.js
CHANGED
|
@@ -7400,7 +7400,7 @@ export async function createMultiXBom(pathList, options) {
|
|
|
7400
7400
|
components = components.concat(executables);
|
|
7401
7401
|
components = components.concat(sharedLibs);
|
|
7402
7402
|
if (dependenciesList?.length) {
|
|
7403
|
-
dependencies = dependencies
|
|
7403
|
+
dependencies = mergeDependencies(dependencies, dependenciesList);
|
|
7404
7404
|
}
|
|
7405
7405
|
if (parentComponent && Object.keys(parentComponent).length) {
|
|
7406
7406
|
// Make the parent oci image depend on all os components
|
|
@@ -8071,6 +8071,7 @@ export async function createMultiXBom(pathList, options) {
|
|
|
8071
8071
|
if (
|
|
8072
8072
|
options.lastWorkingDir &&
|
|
8073
8073
|
options.lastWorkingDir !== "" &&
|
|
8074
|
+
options.lastWorkingDir !== "/" &&
|
|
8074
8075
|
!options.lastWorkingDir.includes("/opt/") &&
|
|
8075
8076
|
!options.lastWorkingDir.includes("/home/")
|
|
8076
8077
|
) {
|
package/lib/managers/binary.js
CHANGED
|
@@ -464,6 +464,8 @@ export async function getOSPackages(src, imageConfig) {
|
|
|
464
464
|
"--skip-db-update",
|
|
465
465
|
"--skip-java-db-update",
|
|
466
466
|
"--offline-scan",
|
|
467
|
+
"--disable-telemetry",
|
|
468
|
+
"--skip-version-check",
|
|
467
469
|
"--skip-files",
|
|
468
470
|
"**/*.jar,**/*.war,**/*.par,**/*.ear",
|
|
469
471
|
"--no-progress",
|
|
@@ -952,7 +954,10 @@ const retrieveDependencies = (tmpDependencies, origBomRef, comp) => {
|
|
|
952
954
|
const compPurl = PackageURL.fromString(comp.purl);
|
|
953
955
|
const tmpPurl = PackageURL.fromString(d.replace("none", compPurl.type));
|
|
954
956
|
tmpPurl.type = compPurl.type;
|
|
955
|
-
|
|
957
|
+
// FIXME: Check if this hack is still needed with the latest trivy
|
|
958
|
+
if (["deb", "apk", "rpm", "alpm", "qpkg"].includes(compPurl.type)) {
|
|
959
|
+
tmpPurl.namespace = compPurl.namespace;
|
|
960
|
+
}
|
|
956
961
|
tmpPurl.qualifiers = tmpPurl.qualifiers || {};
|
|
957
962
|
if (compPurl.qualifiers) {
|
|
958
963
|
if (compPurl.qualifiers.distro_name) {
|
|
@@ -970,6 +975,10 @@ const retrieveDependencies = (tmpDependencies, origBomRef, comp) => {
|
|
|
970
975
|
tmpPurl.version = `${tmpPurl.qualifiers.epoch}:${tmpPurl.version}`;
|
|
971
976
|
}
|
|
972
977
|
}
|
|
978
|
+
// Prevents purls ending with ?
|
|
979
|
+
if (!Object.keys(tmpPurl.qualifiers).length) {
|
|
980
|
+
tmpPurl.qualifiers = undefined;
|
|
981
|
+
}
|
|
973
982
|
dependsOn.add(decodeURIComponent(tmpPurl.toString()));
|
|
974
983
|
} catch (_e) {
|
|
975
984
|
// ignore
|
package/lib/managers/docker.js
CHANGED
|
@@ -1025,7 +1025,8 @@ export const exportArchive = async (fullImageName, options = {}) => {
|
|
|
1025
1025
|
await extractTar(ablob, allLayersExplodedDir, options);
|
|
1026
1026
|
}
|
|
1027
1027
|
const lastLayerConfig = {};
|
|
1028
|
-
|
|
1028
|
+
// Bug #3565. We may not know the work directory, so we have to try and detect them.
|
|
1029
|
+
const lastWorkingDir = "/";
|
|
1029
1030
|
const exportData = {
|
|
1030
1031
|
manifest,
|
|
1031
1032
|
allLayersDir: tempDir,
|
|
@@ -1318,8 +1319,40 @@ export const getPkgPathList = (exportData, lastWorkingDir) => {
|
|
|
1318
1319
|
const allLayersDir = exportData.allLayersDir;
|
|
1319
1320
|
let pathList = [];
|
|
1320
1321
|
let knownSysPaths = [];
|
|
1322
|
+
// Bug #3565. Try and detect the working directory
|
|
1323
|
+
if (lastWorkingDir === "/" || lastWorkingDir === "") {
|
|
1324
|
+
if (DEBUG_MODE) {
|
|
1325
|
+
console.log("Attempting to detect the work directories ...");
|
|
1326
|
+
}
|
|
1327
|
+
const possibleWorkDirs = getDirs(allLayersExplodedDir, "*", true, false);
|
|
1328
|
+
for (const adir of possibleWorkDirs) {
|
|
1329
|
+
if (safeExistsSync(adir) && !lstatSync(adir).isDirectory()) {
|
|
1330
|
+
break;
|
|
1331
|
+
}
|
|
1332
|
+
let ignoreDir = false;
|
|
1333
|
+
for (const nonWorkDirs of [
|
|
1334
|
+
"/var",
|
|
1335
|
+
"/usr",
|
|
1336
|
+
"/mnt",
|
|
1337
|
+
"/opt",
|
|
1338
|
+
"/root",
|
|
1339
|
+
"/home",
|
|
1340
|
+
]) {
|
|
1341
|
+
if (adir.endsWith(nonWorkDirs)) {
|
|
1342
|
+
ignoreDir = true;
|
|
1343
|
+
break;
|
|
1344
|
+
}
|
|
1345
|
+
}
|
|
1346
|
+
if (!ignoreDir) {
|
|
1347
|
+
knownSysPaths.push(adir);
|
|
1348
|
+
}
|
|
1349
|
+
}
|
|
1350
|
+
if (DEBUG_MODE) {
|
|
1351
|
+
console.log("Possible work directories", knownSysPaths);
|
|
1352
|
+
}
|
|
1353
|
+
}
|
|
1321
1354
|
if (allLayersExplodedDir && allLayersExplodedDir !== "") {
|
|
1322
|
-
knownSysPaths = [
|
|
1355
|
+
knownSysPaths = knownSysPaths.concat([
|
|
1323
1356
|
join(allLayersExplodedDir, "/usr/local/go"),
|
|
1324
1357
|
join(allLayersExplodedDir, "/usr/local/lib"),
|
|
1325
1358
|
join(allLayersExplodedDir, "/usr/local/lib64"),
|
|
@@ -1331,9 +1364,9 @@ export const getPkgPathList = (exportData, lastWorkingDir) => {
|
|
|
1331
1364
|
join(allLayersExplodedDir, "/var/www/html"),
|
|
1332
1365
|
join(allLayersExplodedDir, "/var/lib"),
|
|
1333
1366
|
join(allLayersExplodedDir, "/mnt"),
|
|
1334
|
-
];
|
|
1367
|
+
]);
|
|
1335
1368
|
} else if (allLayersExplodedDir === "") {
|
|
1336
|
-
knownSysPaths = [
|
|
1369
|
+
knownSysPaths = knownSysPaths.concat([
|
|
1337
1370
|
join(allLayersExplodedDir, "/usr/local/go"),
|
|
1338
1371
|
join(allLayersExplodedDir, "/usr/local/lib"),
|
|
1339
1372
|
join(allLayersExplodedDir, "/usr/local/lib64"),
|
|
@@ -1343,7 +1376,7 @@ export const getPkgPathList = (exportData, lastWorkingDir) => {
|
|
|
1343
1376
|
join(allLayersExplodedDir, "/usr/src"),
|
|
1344
1377
|
join(allLayersExplodedDir, "/var/www/html"),
|
|
1345
1378
|
join(allLayersExplodedDir, "/var/lib"),
|
|
1346
|
-
];
|
|
1379
|
+
]);
|
|
1347
1380
|
}
|
|
1348
1381
|
if (safeExistsSync(join(allLayersDir, "Files"))) {
|
|
1349
1382
|
knownSysPaths.push(join(allLayersDir, "Files"));
|
|
@@ -1368,6 +1401,7 @@ export const getPkgPathList = (exportData, lastWorkingDir) => {
|
|
|
1368
1401
|
}
|
|
1369
1402
|
if (lastWorkingDir && lastWorkingDir !== "") {
|
|
1370
1403
|
if (
|
|
1404
|
+
lastWorkingDir !== "/" &&
|
|
1371
1405
|
!lastWorkingDir.includes("/opt/") &&
|
|
1372
1406
|
!lastWorkingDir.includes("/home/") &&
|
|
1373
1407
|
!lastWorkingDir.includes("/root/")
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cyclonedx/cdxgen",
|
|
3
|
-
"version": "12.1.
|
|
3
|
+
"version": "12.1.1",
|
|
4
4
|
"description": "Creates CycloneDX Software Bill of Materials (SBOM) from source or container image",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"sbom",
|
|
@@ -113,15 +113,15 @@
|
|
|
113
113
|
"@babel/template": "7.28.6",
|
|
114
114
|
"@babel/traverse": "7.29.0",
|
|
115
115
|
"@babel/types": "7.29.0",
|
|
116
|
-
"@biomejs/biome": "2.3
|
|
117
|
-
"@biomejs/cli-darwin-arm64": "2.3
|
|
118
|
-
"@biomejs/cli-darwin-x64": "2.3
|
|
119
|
-
"@biomejs/cli-linux-arm64": "2.3
|
|
120
|
-
"@biomejs/cli-linux-arm64-musl": "2.3
|
|
121
|
-
"@biomejs/cli-linux-x64": "2.3
|
|
122
|
-
"@biomejs/cli-linux-x64-musl": "2.3
|
|
123
|
-
"@biomejs/cli-win32-arm64": "2.3
|
|
124
|
-
"@biomejs/cli-win32-x64": "2.3
|
|
116
|
+
"@biomejs/biome": "2.4.3",
|
|
117
|
+
"@biomejs/cli-darwin-arm64": "2.4.3",
|
|
118
|
+
"@biomejs/cli-darwin-x64": "2.4.3",
|
|
119
|
+
"@biomejs/cli-linux-arm64": "2.4.3",
|
|
120
|
+
"@biomejs/cli-linux-arm64-musl": "2.4.3",
|
|
121
|
+
"@biomejs/cli-linux-x64": "2.4.3",
|
|
122
|
+
"@biomejs/cli-linux-x64-musl": "2.4.3",
|
|
123
|
+
"@biomejs/cli-win32-arm64": "2.4.3",
|
|
124
|
+
"@biomejs/cli-win32-x64": "2.4.3",
|
|
125
125
|
"@bufbuild/protobuf": "2.11.0",
|
|
126
126
|
"@cdxgen/cdxgen-plugins-bin": "2.0.2",
|
|
127
127
|
"@cdxgen/cdxgen-plugins-bin-darwin-amd64": "2.0.2",
|
|
@@ -135,8 +135,6 @@
|
|
|
135
135
|
"@cdxgen/cdxgen-plugins-bin-windows-amd64": "2.0.2",
|
|
136
136
|
"@cdxgen/cdxgen-plugins-bin-windows-arm64": "2.0.2",
|
|
137
137
|
"@iarna/toml": "2.2.5",
|
|
138
|
-
"@isaacs/balanced-match": "4.0.1",
|
|
139
|
-
"@isaacs/brace-expansion": "5.0.1",
|
|
140
138
|
"@isaacs/fs-minipass": "4.0.1",
|
|
141
139
|
"@isaacs/string-locale-compare": "1.1.0",
|
|
142
140
|
"@jridgewell/gen-mapping": "0.3.13",
|
|
@@ -149,7 +147,7 @@
|
|
|
149
147
|
"@npmcli/git": "7.0.1",
|
|
150
148
|
"@npmcli/map-workspaces": "5.0.3",
|
|
151
149
|
"@npmcli/name-from-folder": "4.0.0",
|
|
152
|
-
"@npmcli/package-json": "7.0.
|
|
150
|
+
"@npmcli/package-json": "7.0.5",
|
|
153
151
|
"@npmcli/promise-spawn": "9.0.1",
|
|
154
152
|
"@sec-ant/readable-stream": "0.6.0",
|
|
155
153
|
"@sindresorhus/is": "7.2.0",
|
|
@@ -159,20 +157,22 @@
|
|
|
159
157
|
"@types/http-cache-semantics": "4.2.0",
|
|
160
158
|
"abbrev": "4.0.0",
|
|
161
159
|
"agent-base": "7.1.4",
|
|
162
|
-
"ajv": "8.
|
|
160
|
+
"ajv": "8.18.0",
|
|
163
161
|
"ajv-formats": "3.0.1",
|
|
164
162
|
"ansi-regex": "6.2.2",
|
|
165
163
|
"ansi-styles": "6.2.3",
|
|
166
|
-
"b4a": "1.
|
|
164
|
+
"b4a": "1.8.0",
|
|
165
|
+
"balanced-match": "4.0.3",
|
|
167
166
|
"bare-events": "2.8.2",
|
|
168
|
-
"bare-fs": "4.5.
|
|
167
|
+
"bare-fs": "4.5.4",
|
|
169
168
|
"bare-os": "3.6.2",
|
|
170
169
|
"bare-path": "3.0.0",
|
|
171
|
-
"bare-stream": "2.
|
|
170
|
+
"bare-stream": "2.8.0",
|
|
172
171
|
"bare-url": "2.3.2",
|
|
173
172
|
"bin-links": "6.0.0",
|
|
174
173
|
"body-parser": "2.2.2",
|
|
175
174
|
"boolbase": "1.0.0",
|
|
175
|
+
"brace-expansion": "5.0.2",
|
|
176
176
|
"buffer-equal-constant-time": "1.0.1",
|
|
177
177
|
"byte-counter": "0.1.0",
|
|
178
178
|
"bytes": "3.1.2",
|
|
@@ -232,12 +232,12 @@
|
|
|
232
232
|
"fs-minipass": "3.0.3",
|
|
233
233
|
"function-bind": "1.1.2",
|
|
234
234
|
"get-caller-file": "2.0.5",
|
|
235
|
-
"get-east-asian-width": "1.
|
|
235
|
+
"get-east-asian-width": "1.5.0",
|
|
236
236
|
"get-intrinsic": "1.3.0",
|
|
237
237
|
"get-proto": "1.0.1",
|
|
238
238
|
"get-stream": "9.0.1",
|
|
239
239
|
"github-from-package": "0.0.0",
|
|
240
|
-
"glob": "13.0.
|
|
240
|
+
"glob": "13.0.6",
|
|
241
241
|
"gopd": "1.2.0",
|
|
242
242
|
"got": "14.6.6",
|
|
243
243
|
"graceful-fs": "4.2.11",
|
|
@@ -257,7 +257,7 @@
|
|
|
257
257
|
"ip-address": "10.1.0",
|
|
258
258
|
"is-fullwidth-code-point": "5.1.0",
|
|
259
259
|
"is-stream": "4.0.1",
|
|
260
|
-
"isexe": "
|
|
260
|
+
"isexe": "4.0.0",
|
|
261
261
|
"js-tokens": "10.0.0",
|
|
262
262
|
"jsesc": "3.1.0",
|
|
263
263
|
"json-parse-even-better-errors": "5.0.0",
|
|
@@ -278,9 +278,9 @@
|
|
|
278
278
|
"mime-db": "1.54.0",
|
|
279
279
|
"mime-types": "3.0.2",
|
|
280
280
|
"mimic-response": "4.0.0",
|
|
281
|
-
"minimatch": "10.
|
|
281
|
+
"minimatch": "10.2.2",
|
|
282
282
|
"minimist": "1.2.8",
|
|
283
|
-
"minipass": "7.1.
|
|
283
|
+
"minipass": "7.1.3",
|
|
284
284
|
"minipass-collect": "2.0.1",
|
|
285
285
|
"minipass-fetch": "5.0.1",
|
|
286
286
|
"minipass-flush": "1.0.5",
|
|
@@ -297,7 +297,7 @@
|
|
|
297
297
|
"node-gyp": "12.2.0",
|
|
298
298
|
"node-stream-zip": "1.15.0",
|
|
299
299
|
"nopt": "9.0.0",
|
|
300
|
-
"normalize-url": "
|
|
300
|
+
"normalize-url": "9.0.0",
|
|
301
301
|
"npm-install-checks": "8.0.0",
|
|
302
302
|
"npm-normalize-package-bin": "5.0.0",
|
|
303
303
|
"npm-package-arg": "13.0.2",
|
|
@@ -315,7 +315,7 @@
|
|
|
315
315
|
"parse5-htmlparser2-tree-adapter": "8.0.0",
|
|
316
316
|
"parse5-parser-stream": "8.0.0",
|
|
317
317
|
"parseurl": "1.3.3",
|
|
318
|
-
"path-scurry": "2.0.
|
|
318
|
+
"path-scurry": "2.0.2",
|
|
319
319
|
"picocolors": "1.1.1",
|
|
320
320
|
"picomatch": "4.0.3",
|
|
321
321
|
"poku": "3.0.2",
|
|
@@ -324,7 +324,7 @@
|
|
|
324
324
|
"promise-retry": "2.0.1",
|
|
325
325
|
"properties-reader": "2.3.0",
|
|
326
326
|
"pump": "3.0.3",
|
|
327
|
-
"qs": "6.
|
|
327
|
+
"qs": "6.15.0",
|
|
328
328
|
"quick-lru": "5.1.1",
|
|
329
329
|
"raw-body": "3.0.2",
|
|
330
330
|
"rc": "1.2.8",
|
|
@@ -351,14 +351,13 @@
|
|
|
351
351
|
"smart-buffer": "4.2.0",
|
|
352
352
|
"socks": "2.8.7",
|
|
353
353
|
"socks-proxy-agent": "8.0.5",
|
|
354
|
-
"spdx-correct": "3.2.0",
|
|
355
354
|
"spdx-exceptions": "2.5.0",
|
|
356
355
|
"spdx-expression-parse": "4.0.0",
|
|
357
|
-
"spdx-license-ids": "3.0.
|
|
356
|
+
"spdx-license-ids": "3.0.23",
|
|
358
357
|
"ssri": "13.0.0",
|
|
359
358
|
"statuses": "2.0.2",
|
|
360
359
|
"streamx": "2.23.0",
|
|
361
|
-
"string-width": "8.
|
|
360
|
+
"string-width": "8.2.0",
|
|
362
361
|
"strip-ansi": "7.1.2",
|
|
363
362
|
"strip-json-comments": "5.0.3",
|
|
364
363
|
"supports-color": "10.2.2",
|
|
@@ -367,7 +366,8 @@
|
|
|
367
366
|
"tar": "7.5.7",
|
|
368
367
|
"tar-fs": "3.1.1",
|
|
369
368
|
"tar-stream": "3.1.7",
|
|
370
|
-
"
|
|
369
|
+
"teex": "1.0.1",
|
|
370
|
+
"text-decoder": "1.2.7",
|
|
371
371
|
"tinyglobby": "0.2.15",
|
|
372
372
|
"toidentifier": "1.0.1",
|
|
373
373
|
"treeverse": "3.0.0",
|
|
@@ -376,20 +376,19 @@
|
|
|
376
376
|
"type-fest": "5.4.4",
|
|
377
377
|
"type-is": "2.0.1",
|
|
378
378
|
"typescript": "5.9.3",
|
|
379
|
-
"undici": "7.
|
|
379
|
+
"undici": "7.22.0",
|
|
380
380
|
"unique-filename": "5.0.0",
|
|
381
381
|
"unique-slug": "6.0.0",
|
|
382
382
|
"unpipe": "1.0.0",
|
|
383
383
|
"utils-merge": "1.0.1",
|
|
384
384
|
"uuid": "13.0.0",
|
|
385
|
-
"validate-npm-package-license": "3.0.4",
|
|
386
385
|
"validate-npm-package-name": "7.0.2",
|
|
387
386
|
"vary": "1.1.2",
|
|
388
387
|
"walk-up-path": "4.0.0",
|
|
389
388
|
"whatwg-encoding": "3.1.1",
|
|
390
389
|
"whatwg-mimetype": "4.0.0",
|
|
391
|
-
"which": "6.0.
|
|
392
|
-
"wrap-ansi": "
|
|
390
|
+
"which": "6.0.1",
|
|
391
|
+
"wrap-ansi": "10.0.0",
|
|
393
392
|
"wrappy": "1.0.2",
|
|
394
393
|
"write-file-atomic": "7.0.0",
|
|
395
394
|
"xml-js": "1.6.11",
|
|
@@ -410,14 +409,14 @@
|
|
|
410
409
|
"@npmcli/fs": "5.0.0",
|
|
411
410
|
"@npmcli/map-workspaces": "5.0.3",
|
|
412
411
|
"@npmcli/name-from-folder": "4.0.0",
|
|
413
|
-
"@npmcli/package-json": "7.0.
|
|
414
|
-
"ajv": "8.
|
|
412
|
+
"@npmcli/package-json": "7.0.5",
|
|
413
|
+
"ajv": "8.18.0",
|
|
415
414
|
"ajv-formats": "3.0.1",
|
|
416
415
|
"bin-links": "6.0.0",
|
|
417
416
|
"cheerio": "1.2.0",
|
|
418
417
|
"common-ancestor-path": "1.0.1",
|
|
419
418
|
"edn-data": "1.1.2",
|
|
420
|
-
"glob": "13.0.
|
|
419
|
+
"glob": "13.0.6",
|
|
421
420
|
"got": "14.6.6",
|
|
422
421
|
"iconv-lite": "0.7.2",
|
|
423
422
|
"json-stringify-nice": "1.1.4",
|
|
@@ -443,7 +442,7 @@
|
|
|
443
442
|
"yoctocolors": "2.1.2"
|
|
444
443
|
},
|
|
445
444
|
"devDependencies": {
|
|
446
|
-
"@biomejs/biome": "2.3
|
|
445
|
+
"@biomejs/biome": "2.4.3",
|
|
447
446
|
"esmock": "2.7.3",
|
|
448
447
|
"poku": "3.0.2",
|
|
449
448
|
"sinon": "21.0.1",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../lib/cli/index.js"],"names":[],"mappings":"AAg+BA;;;;;;;;GAQG;AACH,gFAFW,MAAM,SAchB;AAqYD;;;;;;;GAOG;AACH,mCALW,MAAM,qBA6EhB;AAED;;;;;GAKG;AACH,uCAHW,MAAM;;;;EAKhB;AAED;;;;;GAKG;AACH,sCAHW,MAAM;;;;EAkBhB;AAED;;;;;GAKG;AACH,oCAHW,MAAM,8BA0tChB;AAED;;;;;GAKG;AACH,sCAHW,MAAM,8BA+1BhB;AAED;;;;;;;;;;GAUG;AACH,+DAsEC;AAED;;;;;GAKG;AACH,sCAHW,MAAM,8BA0ehB;AAED;;;;;GAKG;AACH,kCAHW,MAAM,8BAoahB;AAED;;;;;GAKG;AACH,oCAHW,MAAM,8BAsIhB;AAED;;;;;GAKG;AACH,oCAHW,MAAM,8BAkEhB;AAED;;;;;GAKG;AACH,mCAHW,MAAM,qBA8MhB;AAED;;;;;GAKG;AACH,uCAHW,MAAM,qBAgHhB;AAED;;;;;GAKG;AACH,uCAHW,MAAM,qBA2BhB;AAED;;;;;GAKG;AACH,sCAHW,MAAM,qBA2BhB;AAED;;;;;GAKG;AACH,sCAHW,MAAM,qBA0BhB;AAED;;;;;GAKG;AACH,0CAHW,MAAM,qBAuBhB;AAED;;;;;GAKG;AACH,mCAHW,MAAM,8BAqDhB;AAED;;;;;GAKG;AACH,uCAHW,MAAM,8BA4ChB;AAED;;;;;GAKG;AACH,oCAHW,MAAM,qBA2BhB;AAED;;;;;GAKG;AACH,qCAHW,MAAM,8BA2IhB;AAED;;;;;GAKG;AACH,qCAHW,MAAM,8BAqJhB;AAED;;;;;GAKG;AACH,mCAHW,MAAM,8BAqHhB;AAED;;;;;GAKG;AACH,oCAHW,MAAM,8BA8ChB;AAED;;;;;GAKG;AACH,iDAHW,MAAM,qBAmUhB;AAED;;;;;GAKG;AACH,mCAHW,MAAM,qBA2JhB;AAED;;;;;GAKG;AACH,oCAHW,MAAM,8BA6NhB;AAED;;;;;GAKG;AACH,sCAHW,MAAM,8BAmbhB;AAED;;;;;GAKG;AACH,2CAHW,MAAM;;;;;;;;;;;;;;;;;;;;GAoChB;AAED;;;;;;;;KA+DC;AAED;;;;;;GAMG;AACH,yDA+GC;AAED;;;;;;;;;GASG;AACH,2GAuCC;AAED;;;;;GAKG;AACH,0CAHW,MAAM,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../lib/cli/index.js"],"names":[],"mappings":"AAg+BA;;;;;;;;GAQG;AACH,gFAFW,MAAM,SAchB;AAqYD;;;;;;;GAOG;AACH,mCALW,MAAM,qBA6EhB;AAED;;;;;GAKG;AACH,uCAHW,MAAM;;;;EAKhB;AAED;;;;;GAKG;AACH,sCAHW,MAAM;;;;EAkBhB;AAED;;;;;GAKG;AACH,oCAHW,MAAM,8BA0tChB;AAED;;;;;GAKG;AACH,sCAHW,MAAM,8BA+1BhB;AAED;;;;;;;;;;GAUG;AACH,+DAsEC;AAED;;;;;GAKG;AACH,sCAHW,MAAM,8BA0ehB;AAED;;;;;GAKG;AACH,kCAHW,MAAM,8BAoahB;AAED;;;;;GAKG;AACH,oCAHW,MAAM,8BAsIhB;AAED;;;;;GAKG;AACH,oCAHW,MAAM,8BAkEhB;AAED;;;;;GAKG;AACH,mCAHW,MAAM,qBA8MhB;AAED;;;;;GAKG;AACH,uCAHW,MAAM,qBAgHhB;AAED;;;;;GAKG;AACH,uCAHW,MAAM,qBA2BhB;AAED;;;;;GAKG;AACH,sCAHW,MAAM,qBA2BhB;AAED;;;;;GAKG;AACH,sCAHW,MAAM,qBA0BhB;AAED;;;;;GAKG;AACH,0CAHW,MAAM,qBAuBhB;AAED;;;;;GAKG;AACH,mCAHW,MAAM,8BAqDhB;AAED;;;;;GAKG;AACH,uCAHW,MAAM,8BA4ChB;AAED;;;;;GAKG;AACH,oCAHW,MAAM,qBA2BhB;AAED;;;;;GAKG;AACH,qCAHW,MAAM,8BA2IhB;AAED;;;;;GAKG;AACH,qCAHW,MAAM,8BAqJhB;AAED;;;;;GAKG;AACH,mCAHW,MAAM,8BAqHhB;AAED;;;;;GAKG;AACH,oCAHW,MAAM,8BA8ChB;AAED;;;;;GAKG;AACH,iDAHW,MAAM,qBAmUhB;AAED;;;;;GAKG;AACH,mCAHW,MAAM,qBA2JhB;AAED;;;;;GAKG;AACH,oCAHW,MAAM,8BA6NhB;AAED;;;;;GAKG;AACH,sCAHW,MAAM,8BAmbhB;AAED;;;;;GAKG;AACH,2CAHW,MAAM;;;;;;;;;;;;;;;;;;;;GAoChB;AAED;;;;;;;;KA+DC;AAED;;;;;;GAMG;AACH,yDA+GC;AAED;;;;;;;;;GASG;AACH,2GAuCC;AAED;;;;;GAKG;AACH,0CAHW,MAAM,EAAE,8BAwyBlB;AAED;;;;;GAKG;AACH,iCAHW,MAAM,8BAoVhB;AAED;;;;;GAKG;AACH,gCAHW,MAAM,qBAiRhB;AAED;;;;;;;GAOG;AACH,wDAHY,OAAO,CAAC;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,GAAG,SAAS,CAAC,CA0IjD"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"binary.d.ts","sourceRoot":"","sources":["../../../lib/managers/binary.js"],"names":[],"mappings":"AAsYA,qDAgBC;AAED;;;;;GAKG;AACH,kDAFa,SAAS,MAAO,CAkB5B;AAED;;;;;;;GAOG;AACH,
|
|
1
|
+
{"version":3,"file":"binary.d.ts","sourceRoot":"","sources":["../../../lib/managers/binary.js"],"names":[],"mappings":"AAsYA,qDAgBC;AAED;;;;;GAKG;AACH,kDAFa,SAAS,MAAO,CAkB5B;AAED;;;;;;;GAOG;AACH,kEAmeC;AAsED,gDAgDC;AAED;;;;;;GAMG;AACH,qCAJW,MAAM,cACN,MAAM,WAwChB;AAED;;;;;;;;GAQG;AACH,kCANW,MAAM,iBACN,MAAM,YACN,OAAO,GAEN,OAAO,CAiClB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"docker.d.ts","sourceRoot":"","sources":["../../../lib/managers/docker.js"],"names":[],"mappings":"AAmFA;;GAEG;AACH,oCAoBC;AAED;;GAEG;AACH,4CA2CC;AA5HD,4BAA6C;AAC7C,kCAAmC,WAAW,CAAC;AAmCxC,kDAeN;AAoFM,iCAHI,MAAM,WACN,MAAM,iDAehB;AAqBM,+DAkBN;AA0LM,4EAoGN;AAEM,oFAwBN;AAUM;;;;;;;;EA2EN;AAyBM,2DA+LN;AA6EM,yFAsFN;AAMM;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"docker.d.ts","sourceRoot":"","sources":["../../../lib/managers/docker.js"],"names":[],"mappings":"AAmFA;;GAEG;AACH,oCAoBC;AAED;;GAEG;AACH,4CA2CC;AA5HD,4BAA6C;AAC7C,kCAAmC,WAAW,CAAC;AAmCxC,kDAeN;AAoFM,iCAHI,MAAM,WACN,MAAM,iDAehB;AAqBM,+DAkBN;AA0LM,4EAoGN;AAEM,oFAwBN;AAUM;;;;;;;;EA2EN;AAyBM,2DA+LN;AA6EM,yFAsFN;AAMM;;;;;;;;;;;;;;GAyDN;AAEM;;;;;;;;GAyGN;AAMM,4EA8IN;AAKM,0EA+IN;AAEM,+EAEN;AAEM,4EA0CN;AAEM,iFA0BN"}
|