@microsoft/yarn-plugin-ado-auth 0.1.1 → 0.2.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.
|
@@ -48,7 +48,7 @@ var plugin = (() => {
|
|
|
48
48
|
// src/tokenCache.ts
|
|
49
49
|
var import_core2 = __require("@yarnpkg/core");
|
|
50
50
|
|
|
51
|
-
// ../ado-npm-auth/lib/utils/get-organization-from-feed-url.js
|
|
51
|
+
// ../ado-npm-auth-lib/lib/utils/get-organization-from-feed-url.js
|
|
52
52
|
var extractAdoDetails = (url) => {
|
|
53
53
|
try {
|
|
54
54
|
if (!url.startsWith("https://")) {
|
|
@@ -94,18 +94,18 @@ var plugin = (() => {
|
|
|
94
94
|
}
|
|
95
95
|
};
|
|
96
96
|
|
|
97
|
-
// ../ado-npm-auth/lib/utils/encoding.js
|
|
97
|
+
// ../ado-npm-auth-lib/lib/utils/encoding.js
|
|
98
98
|
function toBase64(input) {
|
|
99
99
|
return Buffer.from(input || "").toString("base64");
|
|
100
100
|
}
|
|
101
101
|
|
|
102
|
-
// ../ado-npm-auth/lib/utils/request.js
|
|
103
|
-
var
|
|
104
|
-
var
|
|
105
|
-
var
|
|
102
|
+
// ../ado-npm-auth-lib/lib/utils/request.js
|
|
103
|
+
var import_node_https = __toESM(__require("https"), 1);
|
|
104
|
+
var import_node_fs = __toESM(__require("fs"), 1);
|
|
105
|
+
var import_node_path = __toESM(__require("path"), 1);
|
|
106
106
|
async function downloadFile(url, downloadPath) {
|
|
107
107
|
return new Promise((resolve, reject) => {
|
|
108
|
-
|
|
108
|
+
import_node_https.default.get(url, (response) => {
|
|
109
109
|
if (response.statusCode === 301 || response.statusCode === 302) {
|
|
110
110
|
const redirectUrl = response.headers.location;
|
|
111
111
|
if (redirectUrl) {
|
|
@@ -122,11 +122,11 @@ var plugin = (() => {
|
|
|
122
122
|
}
|
|
123
123
|
let downloadStream;
|
|
124
124
|
try {
|
|
125
|
-
const downloadDir =
|
|
126
|
-
if (!
|
|
127
|
-
|
|
125
|
+
const downloadDir = import_node_path.default.dirname(downloadPath);
|
|
126
|
+
if (!import_node_fs.default.existsSync(downloadDir)) {
|
|
127
|
+
import_node_fs.default.mkdirSync(downloadDir, { recursive: true });
|
|
128
128
|
}
|
|
129
|
-
downloadStream =
|
|
129
|
+
downloadStream = import_node_fs.default.createWriteStream(downloadPath);
|
|
130
130
|
} catch (error) {
|
|
131
131
|
reject(error);
|
|
132
132
|
return;
|
|
@@ -144,13 +144,14 @@ var plugin = (() => {
|
|
|
144
144
|
});
|
|
145
145
|
}
|
|
146
146
|
|
|
147
|
-
// ../ado-npm-auth/lib/npmrc/generate-npmrc-pat.js
|
|
148
|
-
var
|
|
147
|
+
// ../ado-npm-auth-lib/lib/npmrc/generate-npmrc-pat.js
|
|
148
|
+
var import_node_os5 = __require("os");
|
|
149
149
|
|
|
150
|
-
// ../ado-npm-auth/lib/azureauth/ado.js
|
|
151
|
-
var
|
|
150
|
+
// ../ado-npm-auth-lib/lib/azureauth/ado.js
|
|
151
|
+
var import_node_os3 = __require("os");
|
|
152
|
+
var import_node_child_process2 = __require("child_process");
|
|
152
153
|
|
|
153
|
-
// ../ado-npm-auth/lib/utils/exec.js
|
|
154
|
+
// ../ado-npm-auth-lib/lib/utils/exec.js
|
|
154
155
|
var import_node_child_process = __require("child_process");
|
|
155
156
|
var import_node_util = __require("util");
|
|
156
157
|
var exec = (0, import_node_util.promisify)(import_node_child_process.exec);
|
|
@@ -189,25 +190,25 @@ var plugin = (() => {
|
|
|
189
190
|
});
|
|
190
191
|
}
|
|
191
192
|
|
|
192
|
-
// ../ado-npm-auth/lib/azureauth/is-supported-platform-and-architecture.js
|
|
193
|
-
var
|
|
193
|
+
// ../ado-npm-auth-lib/lib/azureauth/is-supported-platform-and-architecture.js
|
|
194
|
+
var import_node_os2 = __require("os");
|
|
194
195
|
|
|
195
|
-
// ../ado-npm-auth/lib/utils/is-wsl.js
|
|
196
|
-
var
|
|
196
|
+
// ../ado-npm-auth-lib/lib/utils/is-wsl.js
|
|
197
|
+
var import_node_os = __require("os");
|
|
197
198
|
var isWsl = () => {
|
|
198
|
-
return (0,
|
|
199
|
+
return (0, import_node_os.platform)() === "linux" && (0, import_node_os.release)().toLowerCase().includes("wsl");
|
|
199
200
|
};
|
|
200
201
|
|
|
201
|
-
// ../ado-npm-auth/lib/azureauth/is-supported-platform-and-architecture.js
|
|
202
|
+
// ../ado-npm-auth-lib/lib/azureauth/is-supported-platform-and-architecture.js
|
|
202
203
|
var isSupportedPlatformAndArchitecture = () => {
|
|
203
204
|
const supportedPlatformsAndArchitectures = {
|
|
204
205
|
win32: ["x64"],
|
|
205
206
|
darwin: ["x64", "arm64"]
|
|
206
207
|
};
|
|
207
|
-
return isWsl() || supportedPlatformsAndArchitectures[(0,
|
|
208
|
+
return isWsl() || supportedPlatformsAndArchitectures[(0, import_node_os2.platform)()] && supportedPlatformsAndArchitectures[(0, import_node_os2.platform)()].includes((0, import_node_os2.arch)());
|
|
208
209
|
};
|
|
209
210
|
|
|
210
|
-
// ../ado-npm-auth/lib/azureauth/azureauth-command.js
|
|
211
|
+
// ../ado-npm-auth-lib/lib/azureauth/azureauth-command.js
|
|
211
212
|
var memo = void 0;
|
|
212
213
|
var npxAzureAuthCommand = [
|
|
213
214
|
"npm",
|
|
@@ -229,10 +230,7 @@ var plugin = (() => {
|
|
|
229
230
|
return { command: memo, env: npxEnv };
|
|
230
231
|
};
|
|
231
232
|
|
|
232
|
-
// ../ado-npm-auth/lib/azureauth/
|
|
233
|
-
var import_child_process = __require("child_process");
|
|
234
|
-
|
|
235
|
-
// ../ado-npm-auth/lib/azureauth/is-azureauth-installed.js
|
|
233
|
+
// ../ado-npm-auth-lib/lib/azureauth/is-azureauth-installed.js
|
|
236
234
|
var memo2 = void 0;
|
|
237
235
|
var isAzureAuthInstalled = async () => {
|
|
238
236
|
if (memo2 === void 0) {
|
|
@@ -249,10 +247,10 @@ var plugin = (() => {
|
|
|
249
247
|
return memo2;
|
|
250
248
|
};
|
|
251
249
|
|
|
252
|
-
// ../ado-npm-auth/lib/azureauth/ado.js
|
|
250
|
+
// ../ado-npm-auth-lib/lib/azureauth/ado.js
|
|
253
251
|
var adoPat = async (options, azureAuthLocation) => {
|
|
254
252
|
if (!isSupportedPlatformAndArchitecture()) {
|
|
255
|
-
throw new Error(`AzureAuth is not supported for platform ${(0,
|
|
253
|
+
throw new Error(`AzureAuth is not supported for platform ${(0, import_node_os3.platform)()} and architecture ${(0, import_node_os3.arch)()}`);
|
|
256
254
|
}
|
|
257
255
|
const { command: authCommand, env } = azureAuthLocation ? {
|
|
258
256
|
command: [azureAuthLocation],
|
|
@@ -284,7 +282,7 @@ var plugin = (() => {
|
|
|
284
282
|
let result;
|
|
285
283
|
if (isWsl()) {
|
|
286
284
|
try {
|
|
287
|
-
result = (0,
|
|
285
|
+
result = (0, import_node_child_process2.spawnSync)(command[0], command.slice(1), { encoding: "utf-8" });
|
|
288
286
|
if (result.status !== 0 || result.stderr && !result.stdout) {
|
|
289
287
|
throw new Error(`Azure Auth failed with exit code ${result.status}: ${result.stderr}`);
|
|
290
288
|
}
|
|
@@ -317,14 +315,12 @@ var plugin = (() => {
|
|
|
317
315
|
}
|
|
318
316
|
};
|
|
319
317
|
|
|
320
|
-
// ../ado-npm-auth/lib/npmrc/nugetCredentialProvider.js
|
|
321
|
-
var
|
|
322
|
-
var
|
|
323
|
-
var
|
|
324
|
-
var import_url = __require("url");
|
|
325
|
-
var import_meta = {};
|
|
318
|
+
// ../ado-npm-auth-lib/lib/npmrc/nugetCredentialProvider.js
|
|
319
|
+
var import_node_os4 = __toESM(__require("os"), 1);
|
|
320
|
+
var import_node_fs2 = __toESM(__require("fs"), 1);
|
|
321
|
+
var import_node_path2 = __toESM(__require("path"), 1);
|
|
326
322
|
var CredentialProviderVersion = "1.4.1";
|
|
327
|
-
var OutputDir =
|
|
323
|
+
var OutputDir = import_node_path2.default.resolve("..", ".bin", "CredentialProvider.Microsoft", "v" + CredentialProviderVersion);
|
|
328
324
|
async function credentialProviderPat(registry) {
|
|
329
325
|
const nugetFeedUrl = toNugetUrl(registry);
|
|
330
326
|
const toolPath = await getCredentialProvider();
|
|
@@ -355,19 +351,19 @@ var plugin = (() => {
|
|
|
355
351
|
}
|
|
356
352
|
}
|
|
357
353
|
function tryFileExists(executable) {
|
|
358
|
-
if (
|
|
354
|
+
if (import_node_fs2.default.existsSync(executable)) {
|
|
359
355
|
return executable;
|
|
360
|
-
} else if (
|
|
356
|
+
} else if (import_node_fs2.default.existsSync(executable + ".exe")) {
|
|
361
357
|
return executable + ".exe";
|
|
362
358
|
}
|
|
363
359
|
return void 0;
|
|
364
360
|
}
|
|
365
361
|
async function getCredentialProvider() {
|
|
366
|
-
let toolPath = tryFileExists(
|
|
362
|
+
let toolPath = tryFileExists(import_node_path2.default.join(import_node_os4.default.homedir(), ".nuget", "plugins", "netcore", "CredentialProvider.Microsoft", "CredentialProvider.Microsoft"));
|
|
367
363
|
if (toolPath) {
|
|
368
364
|
return toolPath;
|
|
369
365
|
}
|
|
370
|
-
const downloadedFilePath =
|
|
366
|
+
const downloadedFilePath = import_node_path2.default.join(OutputDir, "plugins", "netcore", "CredentialProvider.Microsoft", "CredentialProvider.Microsoft");
|
|
371
367
|
toolPath = tryFileExists(downloadedFilePath);
|
|
372
368
|
if (toolPath) {
|
|
373
369
|
return toolPath;
|
|
@@ -375,15 +371,15 @@ var plugin = (() => {
|
|
|
375
371
|
await downloadCredentialProvider();
|
|
376
372
|
toolPath = tryFileExists(downloadedFilePath);
|
|
377
373
|
if (toolPath) {
|
|
378
|
-
|
|
374
|
+
import_node_fs2.default.chmodSync(toolPath, 493);
|
|
379
375
|
} else {
|
|
380
376
|
throw new Error(`CredentialProvider was not found at expected path after download: ${toolPath}`);
|
|
381
377
|
}
|
|
382
378
|
return toolPath;
|
|
383
379
|
}
|
|
384
380
|
async function downloadCredentialProvider() {
|
|
385
|
-
const downloadUrl = `https://github.com/microsoft/artifacts-credprovider/releases/download/v${CredentialProviderVersion}/Microsoft.Net8.${
|
|
386
|
-
const downloadPath =
|
|
381
|
+
const downloadUrl = `https://github.com/microsoft/artifacts-credprovider/releases/download/v${CredentialProviderVersion}/Microsoft.Net8.${import_node_os4.default.platform()}-${import_node_os4.default.arch()}.NuGet.CredentialProvider.tar.gz`;
|
|
382
|
+
const downloadPath = import_node_path2.default.join(OutputDir, "CredentialProvider.Microsoft.tar.gz");
|
|
387
383
|
console.log(`🌐 Downloading ${downloadUrl}`);
|
|
388
384
|
await downloadFile(downloadUrl, downloadPath);
|
|
389
385
|
await execProcess("tar", ["-xzf", downloadPath, "-C", OutputDir], {
|
|
@@ -391,9 +387,9 @@ var plugin = (() => {
|
|
|
391
387
|
});
|
|
392
388
|
}
|
|
393
389
|
|
|
394
|
-
// ../ado-npm-auth/lib/npmrc/generate-npmrc-pat.js
|
|
390
|
+
// ../ado-npm-auth-lib/lib/npmrc/generate-npmrc-pat.js
|
|
395
391
|
var generateNpmrcPat = async (organization, feed, encode = false, azureAuthLocation) => {
|
|
396
|
-
const name = `${(0,
|
|
392
|
+
const name = `${(0, import_node_os5.hostname)()}-${organization}`;
|
|
397
393
|
const rawToken = await getRawToken(name, organization, feed, azureAuthLocation);
|
|
398
394
|
if (encode) {
|
|
399
395
|
return toBase64(rawToken);
|
|
@@ -402,7 +398,7 @@ var plugin = (() => {
|
|
|
402
398
|
};
|
|
403
399
|
async function getRawToken(name, organization, feed, azureAuthLocation) {
|
|
404
400
|
const patScope = "vso.packaging_write";
|
|
405
|
-
switch ((0,
|
|
401
|
+
switch ((0, import_node_os5.platform)()) {
|
|
406
402
|
case "win32":
|
|
407
403
|
case "darwin": {
|
|
408
404
|
const pat = await adoPat({
|
|
@@ -420,7 +416,7 @@ var plugin = (() => {
|
|
|
420
416
|
return cpPat.Password;
|
|
421
417
|
}
|
|
422
418
|
default:
|
|
423
|
-
throw new Error(`Platform ${(0,
|
|
419
|
+
throw new Error(`Platform ${(0, import_node_os5.platform)()} is not supported for ADO authentication`);
|
|
424
420
|
}
|
|
425
421
|
}
|
|
426
422
|
|
|
@@ -472,8 +468,8 @@ var plugin = (() => {
|
|
|
472
468
|
}
|
|
473
469
|
|
|
474
470
|
// src/tokenCache.ts
|
|
475
|
-
var
|
|
476
|
-
var
|
|
471
|
+
var import_node_child_process3 = __require("child_process");
|
|
472
|
+
var import_node_os6 = __toESM(__require("os"), 1);
|
|
477
473
|
var TokenCache = class {
|
|
478
474
|
constructor(configuration, loadConfig = loadConfiguration) {
|
|
479
475
|
this.cache = {};
|
|
@@ -595,11 +591,11 @@ var plugin = (() => {
|
|
|
595
591
|
}
|
|
596
592
|
};
|
|
597
593
|
function findAzureAuthPath() {
|
|
598
|
-
const isWin =
|
|
594
|
+
const isWin = import_node_os6.default.platform() === "win32";
|
|
599
595
|
const execName = isWin ? "azureauth.exe" : "azureauth";
|
|
600
596
|
const cmd = isWin ? "where" : "which";
|
|
601
597
|
try {
|
|
602
|
-
const result = (0,
|
|
598
|
+
const result = (0, import_node_child_process3.spawnSync)(cmd, [execName], { encoding: "utf-8" });
|
|
603
599
|
if (result.status === 0 && result.stdout) {
|
|
604
600
|
const line = result.stdout.split(/\r?\n/).find(Boolean);
|
|
605
601
|
return line ? line.trim() : void 0;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
|
-
"sources": ["../src/plugin.ts", "../src/tokenCache.ts", "../../ado-npm-auth/src/utils/get-organization-from-feed-url.ts", "../../ado-npm-auth/src/utils/encoding.ts", "../../ado-npm-auth/src/utils/request.ts", "../../ado-npm-auth/src/npmrc/generate-npmrc-pat.ts", "../../ado-npm-auth/src/azureauth/ado.ts", "../../ado-npm-auth/src/utils/exec.ts", "../../ado-npm-auth/src/azureauth/is-supported-platform-and-architecture.ts", "../../ado-npm-auth/src/utils/is-wsl.ts", "../../ado-npm-auth/src/azureauth/azureauth-command.ts", "../../ado-npm-auth/src/azureauth/is-azureauth-installed.ts", "../../ado-npm-auth/src/npmrc/nugetCredentialProvider.ts", "../src/configuration.ts", "../src/utils.ts", "../src/getToken.ts"],
|
|
4
|
-
"sourcesContent": ["import { type Plugin } from \"@yarnpkg/core\";\nimport { type GetAuthHeaderOptions, getToken } from \"./getToken.ts\";\nimport { getConfiguration } from \"./configuration.ts\";\n\n/**\n * Called when getting the authentication header for a request to the npm registry.\n * You can use this mechanism to dynamically query a CLI for the credentials for a\n * specific registry.\n */\nasync function getNpmAuthenticationHeader(\n currentHeader: string | undefined,\n registry: string,\n options: GetAuthHeaderOptions,\n): Promise<string | undefined> {\n const customToken = getToken(options, registry);\n if (customToken !== undefined) {\n const token =\n typeof customToken === \"string\" ? customToken : await customToken;\n return `Bearer ${token}`;\n }\n return currentHeader;\n}\n\n/**\n * The plugin definition.\n */\nconst plugin: Plugin = {\n /**\n * Add the plugin configuration options\n */\n configuration: getConfiguration(),\n\n /**\n * Add a hook to authenticate on demand with npm feeds\n */\n hooks: {\n getNpmAuthenticationHeader,\n },\n};\n\n// eslint-disable-next-line no-restricted-exports\nexport default plugin;\n", "import {\n type Configuration,\n type Ident,\n StreamReport,\n formatUtils,\n} from \"@yarnpkg/core\";\nimport { getOrganizationFromFeedUrl, generateNpmrcPat } from \"ado-npm-auth\";\nimport { loadConfiguration } from \"./configuration.ts\";\nimport { getConfigMap, getConfigString, type MapLike } from \"./utils.ts\";\nimport { spawnSync } from \"node:child_process\";\nimport os from \"node:os\";\n\n/**\n * A simple in-memory cache for tokens per registry. This will attempt to load tokens from the\n * existing settings first, and if not found, will use the ADO CLI to get a new token.\n */\nexport class TokenCache {\n private configuration: Configuration;\n private prefix: string;\n private azureAuthPath?: string;\n private cache: Record<string, string | Promise<string>> = {};\n\n constructor(\n configuration: Configuration,\n loadConfig: typeof loadConfiguration = loadConfiguration,\n ) {\n this.configuration = configuration;\n const settings = loadConfig(configuration);\n this.prefix = settings.adoNpmAuthFeedPrefix ?? \"\";\n this.azureAuthPath = settings.adoNpmAuthToolPath || findAzureAuthPath();\n }\n\n /**\n * Will return the token for the given registry, either from cache or by fetching a new one. If it is in\n * the cache already, it will return it directly. Otherwise it will return a promise that resolves to the token\n * @param registry the registry/feed that we need to authenticate against\n */\n getToken(\n registry: string,\n ident?: Ident,\n ): string | Promise<string> | undefined {\n if (!this.prefix || registry.startsWith(this.prefix)) {\n return (this.cache[registry] ??= this.fetchToken(registry, ident));\n }\n return undefined;\n }\n\n /**\n * Do the work to fetch a token for the given registry. This will attempt to get it from yarnrc/env first,\n * and if not found, will use the ADO CLI to get a new token.\n *\n * @param registry registry to authenticate to\n * @param ident optional ident, used for configuration lookups (yarn pass through)\n * @returns a promise that resolves to a string\n */\n private async fetchToken(registry: string, ident?: Ident): Promise<string> {\n const configuration = this.configuration;\n await StreamReport.start(\n { configuration, stdout: process.stdout },\n async (report) => {\n const prettyRegistry = formatUtils.pretty(\n configuration,\n registry,\n formatUtils.Type.URL,\n );\n // first see if a token is set via .yarnrc, either hardcoded or via environment variable\n const authConfig = this.getAuthConfiguration(registry, ident);\n const tokenFromYarnrc = getConfigString(authConfig, \"npmAuthToken\");\n if (tokenFromYarnrc) {\n this.cache[registry] = tokenFromYarnrc;\n report.reportInfo(\n null,\n `Authenticated to: ${prettyRegistry} (via configuration)`,\n );\n return;\n }\n\n const organization = getOrganizationFromFeedUrl(registry);\n if (!organization) {\n throw new Error(\n `Could not determine organization from registry URL: ${registry}`,\n );\n }\n\n const pat = await generateNpmrcPat(\n organization,\n registry,\n false,\n this.azureAuthPath,\n );\n this.cache[registry] = pat;\n report.reportInfo(\n null,\n `Authenticated to: ${prettyRegistry} (via ADO CLI)`,\n );\n },\n );\n\n const pat = this.cache[registry];\n if (pat == null) {\n throw new Error(`Failed to authenticate to: ${registry}`);\n }\n return pat;\n }\n\n /**\n * Get the authentication configuration for the given registry and ident. This code was\n * taken from Yarn's npm plugin to match their logic. Importing that package directly results in\n * a massive bundle, so extracted just this logic.\n */\n private getAuthConfiguration(registry: string, ident?: Ident): MapLike {\n const scopeConfiguration = ident && this.getScopeConfiguration(ident.scope);\n\n if (scopeConfiguration?.get(`npmAuthToken`)) {\n return scopeConfiguration;\n }\n\n const registryConfiguration = this.getRegistryConfiguration(registry);\n\n return registryConfiguration ?? this.configuration;\n }\n\n /**\n * Return the auth configuration for the given scope if one has been set\n * @param scope package scope to use for lookups\n */\n private getScopeConfiguration(scope: string | null): MapLike | null {\n if (scope != null) {\n const scopeConfigurations = getConfigMap(this.configuration, `npmScopes`);\n const scopeConfiguration = getConfigMap(scopeConfigurations, scope);\n if (scopeConfiguration) {\n return scopeConfiguration;\n }\n }\n return null;\n }\n\n /**\n * Return the auth configuration for the given registry if one has been set\n * @param registry registry to get configuration for\n */\n private getRegistryConfiguration(registry: string): MapLike | null {\n // get the npmRegistries configuration map\n const registryConfigurations = getConfigMap(\n this.configuration,\n `npmRegistries`,\n );\n // normalize the registry url for lookups, same as yarn does internally\n const normalizedRegistry = registry.replace(/\\/$/, ``);\n\n // first try to get an exact match\n const exactEntry = getConfigMap(registryConfigurations, normalizedRegistry);\n if (typeof exactEntry !== `undefined`) {\n return exactEntry;\n }\n\n // then try without protocol\n const noProtocolEntry = getConfigMap(\n registryConfigurations,\n normalizedRegistry.replace(/^[a-z]+:/, ``),\n );\n\n return noProtocolEntry ?? null;\n }\n}\n\nfunction findAzureAuthPath(): string | undefined {\n const isWin = os.platform() === \"win32\";\n const execName = isWin ? \"azureauth.exe\" : \"azureauth\";\n const cmd = isWin ? \"where\" : \"which\";\n\n try {\n const result = spawnSync(cmd, [execName], { encoding: \"utf-8\" });\n if (result.status === 0 && result.stdout) {\n const line = result.stdout.split(/\\r?\\n/).find(Boolean);\n return line ? line.trim() : undefined;\n }\n } catch {\n // Ignore errors, fall through to undefined\n }\n\n return undefined;\n}\n", "/**\n * Extracts the organization and project details from a given Azure DevOps URL.\n * The function differentiates between the \"new style\" URLs that use 'dev.azure.com'\n * and \"old style\" URLs that use a subdomain of 'visualstudio.com'.\n *\n * @param {string} url - The Azure DevOps URL from which to extract details.\n * @returns {Object} An object containing the `organization` and `project` extracted from the URL.\n * @throws {Error} Throws an error if the URL is invalid, not in the expected format,\n * or does not contain the necessary information for extraction.\n *\n * @example\n * // New style URL\n * extractAdoDetails(\"https://dev.azure.com/contoso/WebsiteRedesign\");\n * // returns { organization: \"contoso\", project: \"WebsiteRedesign\" }\n *\n * // Old style URL\n * extractAdoDetails(\"https://contoso.visualstudio.com/WebsiteRedesign\");\n * // returns { organization: \"contoso\", project: \"WebsiteRedesign\" }\n *\n * // Invalid URL\n * extractAdoDetails(\"https://invalid.url.com\");\n * // throws Error\n */\nconst extractAdoDetails = (url: string) => {\n try {\n if (!url.startsWith(\"https://\")) {\n url = \"https://\" + url;\n }\n const parsedUrl = new URL(url);\n const hostname = parsedUrl.hostname;\n const pathname = parsedUrl.pathname;\n\n // Check for new style URLs (dev.azure.com)\n if (hostname.endsWith(\"dev.azure.com\")) {\n const pathSegments = pathname.split(\"/\").filter(Boolean); // Remove empty strings from the split result\n if (pathSegments.length >= 2) {\n return {\n organization: pathSegments[0],\n project: pathSegments[1],\n };\n } else {\n throw new Error(\n \"Not enough segments in path for a valid organization and project extraction.\",\n );\n }\n }\n\n // Check for old style URLs (visualstudio.com)\n if (hostname.endsWith(\"visualstudio.com\")) {\n const subdomain = hostname.split(\".\")[0];\n const pathSegments = pathname.split(\"/\").filter(Boolean);\n if (subdomain && pathSegments.length >= 1) {\n return {\n organization: subdomain,\n project: pathSegments[0],\n };\n } else {\n throw new Error(\n \"Not enough segments in path or missing subdomain for a valid organization and project extraction.\",\n );\n }\n }\n\n // If the URL does not match expected formats\n throw new Error(\n \"URL format not recognized or does not contain enough information.\",\n );\n } catch {\n throw new Error(\"Invalid URL or unsupported format\");\n }\n};\n\n/**\n * Get the ADO Org for a npm feed\n * @param {string} feedUrl URL of the feed to get the ADO organization from\n * @param {string} [defaultOrg] Backup org in case it cannot be determined from the feed url\n * @returns ADO Organization for the feed\n */\nexport const getOrganizationFromFeedUrl = (\n feedUrl: string,\n defaultOrg = \"\",\n) => {\n try {\n const { organization } = extractAdoDetails(feedUrl);\n return organization;\n } catch {\n return defaultOrg;\n }\n};\n", "/**\n * Create a base64 encoded string from a string\n * @param {string} input\n * @returns {string}\n */\nexport function toBase64(input: string | undefined): string {\n return Buffer.from(input || \"\").toString(\"base64\");\n}\n\n/**\n * Decode a base64 encoded string\n * @param {string} base64string\n * @returns\n */\nexport const fromBase64 = (base64string: string) =>\n Buffer.from(base64string, \"base64\").toString(\"utf8\");\n", "import https, { type RequestOptions } from \"https\";\nimport type { OutgoingHttpHeaders } from \"http\";\nimport fs from \"fs\";\nimport path from \"path\";\n\nconst defaultOptions: RequestOptions = {\n port: 443,\n method: \"GET\",\n};\n\n/**\n *\n * @param {import(\"http\").RequestOptions} options\n * @returns\n */\nexport const makeRequest = async (options: RequestOptions) => {\n return new Promise((resolve, reject) => {\n const mergedOptions = {\n ...defaultOptions,\n ...options,\n };\n\n const req = https.request(mergedOptions, (res) => {\n let data = \"\";\n let dataJson = {};\n const ok = res.statusCode === 200;\n\n res.on(\"data\", (d) => {\n data += d;\n });\n\n res.on(\"end\", () => {\n if (\n data &&\n hasAcceptHeaderValue(mergedOptions?.headers, \"application/json\")\n ) {\n dataJson = JSON.parse(data.toString().trim());\n }\n\n if (ok) {\n resolve(dataJson || data);\n } else {\n if (dataJson) {\n dataJson = { ...dataJson, statusCode: res.statusCode };\n }\n reject(\n dataJson || data || new Error(`Error code: ${res.statusCode}.`),\n );\n }\n });\n\n res.on(\"error\", (/** @type {string} */ error) => {\n reject(new Error(error as any));\n });\n });\n\n req.end();\n });\n};\n\nfunction hasAcceptHeaderValue(\n headers: OutgoingHttpHeaders | readonly string[] | undefined,\n acceptHeaderValueToCheck: string,\n): boolean {\n if (!headers) {\n return false;\n }\n\n if (Array.isArray(headers)) {\n for (const header of headers) {\n const indx = header.toLowerCase().indexOf(\"accept:\");\n if (indx === 0) {\n const acceptHeaderValue = header.slice(indx + 7).trim();\n const acceptHeaderValues = acceptHeaderValue\n .split(\",\")\n .map((value: string) => value.trim());\n if (acceptHeaderValues.includes(acceptHeaderValueToCheck)) {\n return true;\n }\n }\n }\n\n return false;\n }\n\n const normalizedHeaders = headers as OutgoingHttpHeaders;\n const acceptHeaderValue = Object.entries(normalizedHeaders).find(\n ([key]) => key.toLowerCase() === \"accept\",\n )?.[1];\n\n if (typeof acceptHeaderValue === \"string\") {\n return acceptHeaderValue === acceptHeaderValueToCheck;\n } else if (Array.isArray(acceptHeaderValue)) {\n return acceptHeaderValue.includes(acceptHeaderValueToCheck);\n } else {\n return false;\n }\n}\n\n/**\n * Downloads a file from a URL to a local path.\n * @param url The URL of the file to download.\n * @param downloadPath The local path to save the downloaded file.\n * @returns A promise that resolves when the download is complete.\n */\nexport async function downloadFile(\n url: string,\n downloadPath: string,\n): Promise<void> {\n return new Promise((resolve, reject) => {\n https\n .get(url, (response) => {\n // Handle redirects\n if (response.statusCode === 301 || response.statusCode === 302) {\n const redirectUrl = response.headers.location;\n if (redirectUrl) {\n downloadFile(redirectUrl, downloadPath).then(resolve).catch(reject);\n return;\n } else {\n reject(new Error(\"Redirect without location header\"));\n return;\n }\n }\n\n // Check for successful response\n if (response.statusCode !== 200) {\n reject(\n new Error(`HTTP ${response.statusCode}: ${response.statusMessage}`),\n );\n return;\n }\n\n let downloadStream: fs.WriteStream;\n try {\n const downloadDir = path.dirname(downloadPath);\n if (!fs.existsSync(downloadDir)) {\n fs.mkdirSync(downloadDir, { recursive: true });\n }\n\n downloadStream = fs.createWriteStream(downloadPath);\n } catch (error) {\n reject(error);\n return;\n }\n\n // Handle stream errors\n downloadStream.on(\"error\", (error) => {\n reject(error);\n });\n\n // Pipe the response to the file stream\n response.pipe(downloadStream);\n\n // The whole response has been received and written\n downloadStream.on(\"finish\", () => {\n resolve();\n });\n })\n .on(\"error\", (error) => {\n reject(error); // Reject on request error\n });\n });\n}\n", "import { hostname, platform } from \"os\";\nimport type { AdoPatResponse } from \"../azureauth/ado.js\";\nimport { adoPat } from \"../azureauth/ado.js\";\nimport { toBase64 } from \"../utils/encoding.js\";\nimport { credentialProviderPat } from \"./nugetCredentialProvider.js\";\n\n/**\n * Generates a valid ADO PAT, scoped for vso.packaging in the given ado organization, 30 minute timeout\n * @returns { string } a valid ADO PAT\n */\nexport const generateNpmrcPat = async (\n organization: string,\n feed: string,\n encode = false,\n azureAuthLocation?: string,\n): Promise<string> => {\n const name = `${hostname()}-${organization}`;\n const rawToken = await getRawToken(\n name,\n organization,\n feed,\n azureAuthLocation,\n );\n\n if (encode) {\n return toBase64(rawToken);\n }\n\n return rawToken;\n};\n\nasync function getRawToken(\n name: string,\n organization: string,\n feed: string,\n azureAuthLocation?: string,\n): Promise<string> {\n /**\n * Use vso.packaging_write to include \"Collaborator\" (Feed and Upstream Reader) permissions.\n * vso.packaging only provides \"Reader\" access (view/download packages).\n * vso.packaging_write provides \"Contributor\" access (publish/promote/deprecate) which includes\n * Collaborator permissions (save packages from upstream sources).\n * Reference: https://learn.microsoft.com/en-us/azure/devops/integrate/get-started/authentication/oauth#available-scopes\n *\n * I filed feedback on VSO to add this: https://developercommunity.visualstudio.com/t/the-scope-for-vsopackaging-SHOULD-inclu/10998135\n */\n const patScope = \"vso.packaging_write\";\n\n switch (platform()) {\n case \"win32\":\n case \"darwin\": {\n const pat = await adoPat(\n {\n promptHint: `Authenticate to ${organization} to generate a temporary token for npm`,\n organization,\n displayName: name,\n scope: [patScope],\n timeout: \"30\",\n output: \"json\",\n },\n azureAuthLocation,\n );\n return (pat as AdoPatResponse).token;\n }\n case \"linux\": {\n const cpPat = await credentialProviderPat(feed);\n return cpPat.Password;\n }\n default:\n throw new Error(\n `Platform ${platform()} is not supported for ADO authentication`,\n );\n }\n}\n", "import { arch, platform } from \"os\";\nimport { exec } from \"../utils/exec.js\";\nimport { isSupportedPlatformAndArchitecture } from \"./is-supported-platform-and-architecture.js\";\nimport { azureAuthCommand } from \"./azureauth-command.js\";\nimport { isWsl } from \"../utils/is-wsl.js\";\nimport { spawnSync } from \"child_process\";\nimport { isAzureAuthInstalled } from \"./is-azureauth-installed.js\";\n\nexport type AdoPatOptions = {\n promptHint: string;\n organization: string;\n displayName: string;\n scope: string[];\n output?: string;\n mode?: string;\n domain?: string;\n timeout?: string;\n};\n\nexport type AdoPatResponse = {\n displayName: string;\n validTo: string;\n scope: string[];\n targetAccounts: string[];\n validFrom: string;\n authorizationId: string;\n token: string;\n};\n\n/**\n * Wrapper for `azureauth ado pat`. Please run `azureauth ado pat --help` for full command options and description\n * @param options Options for PAT generation\n * @returns ADO PAT details\n */\nexport const adoPat = async (\n options: AdoPatOptions,\n azureAuthLocation?: string,\n): Promise<AdoPatResponse | string> => {\n if (!isSupportedPlatformAndArchitecture()) {\n throw new Error(\n `AzureAuth is not supported for platform ${platform()} and architecture ${arch()}`,\n );\n }\n\n const { command: authCommand, env } = azureAuthLocation\n ? {\n command: [azureAuthLocation],\n env: process.env,\n }\n : azureAuthCommand();\n\n const command = [\n ...authCommand,\n `ado`,\n `pat`,\n `--prompt-hint ${isWsl() ? options.promptHint : `\"${options.promptHint}\"`}`, // We only use spawn for WSL. spawn does not does not require prompt hint to be wrapped in quotes. exec does.\n `--organization ${options.organization}`,\n `--display-name ${options.displayName}`,\n ...options.scope.map((scope) => `--scope ${scope}`),\n ];\n\n if (options.output) {\n command.push(`--output ${options.output}`);\n }\n\n if (options.mode) {\n command.push(`--mode ${options.mode}`);\n }\n\n if (options.domain) {\n command.push(`--domain ${options.domain}`);\n }\n\n if (options.timeout) {\n command.push(`--timeout ${options.timeout}`);\n }\n\n try {\n let result;\n if (isWsl()) {\n try {\n result = spawnSync(command[0], command.slice(1), { encoding: \"utf-8\" });\n\n if (result.status !== 0 || (result.stderr && !result.stdout)) {\n throw new Error(\n `Azure Auth failed with exit code ${result.status}: ${result.stderr}`,\n );\n }\n } catch (error: any) {\n throw new Error(\n `Failed to get Ado Pat from system AzureAuth: ${error.message}`,\n );\n }\n } else {\n try {\n result = await exec(command.join(\" \"), { env });\n\n if (result.stderr && !result.stdout) {\n throw new Error(result.stderr);\n }\n } catch (error: any) {\n throw new Error(\n `Failed to get Ado Pat from npx AzureAuth: ${error.message}`,\n );\n }\n }\n\n if (options.output === \"json\") {\n try {\n return JSON.parse(result.stdout) as AdoPatResponse;\n } catch {\n throw new Error(`Failed to parse JSON output: ${result.stdout}`);\n }\n }\n\n return result.stdout;\n } catch (error: any) {\n if (!(await isAzureAuthInstalled())) {\n throw new Error(`AzureAuth is not installed: ${error}`);\n }\n\n throw new Error(error.message);\n }\n};\n", "import { exec as _exec, spawn } from \"node:child_process\";\nimport { promisify } from \"node:util\";\n\nexport const exec = promisify(_exec);\n\n/**\n * Executes a command as a child process.\n * @param tool The command to run.\n * @param args The arguments to pass to the command.\n * @param options Options for the child process.\n * @returns A promise that resolves when the process exits.\n */\nexport function execProcess(\n tool: string,\n args: string[],\n options?: {\n cwd?: string;\n env?: Record<string, string>;\n stdio?: \"pipe\" | \"inherit\" | \"ignore\";\n shell?: boolean | string;\n processStdOut?: (data: string) => void;\n processStdErr?: (data: string) => void;\n },\n): Promise<void> {\n return new Promise((resolve, reject) => {\n const cwd = options?.cwd || process.cwd();\n console.log(`🚀 Launching [${tool} ${args.join(\" \")}] in ${cwd}`);\n const result = spawn(tool, args, {\n cwd: cwd,\n env: options?.env || process.env,\n stdio: options?.stdio || \"inherit\",\n shell: options?.shell || false,\n });\n\n if (options?.stdio === \"pipe\") {\n result.stdout?.setEncoding(\"utf8\");\n result.stdout?.on(\"data\", function (data: Buffer) {\n const strData = data.toString(\"utf8\");\n options?.processStdOut?.(strData);\n });\n\n result.stderr?.setEncoding(\"utf8\");\n result.stderr?.on(\"data\", function (data: Buffer) {\n const strData = data.toString(\"utf8\");\n options?.processStdErr?.(strData);\n });\n }\n result.on(\"exit\", (code) => {\n if (code == 0) {\n resolve();\n } else {\n reject(new Error(`Process ${tool} exited with code ${code}`));\n }\n });\n });\n}\n", "import { arch, platform } from \"os\";\nimport { isWsl } from \"../utils/is-wsl.js\";\n\n/**\n * Determines if the currently running platform is supported by azureauth. Currently, supported platforms are Windows, Mac & WSL\n * @returns { boolean } if the current platform is supported by azureauth\n */\nexport const isSupportedPlatformAndArchitecture = (): boolean => {\n const supportedPlatformsAndArchitectures: Record<string, string[]> = {\n win32: [\"x64\"],\n darwin: [\"x64\", \"arm64\"],\n };\n\n return (\n isWsl() ||\n (supportedPlatformsAndArchitectures[platform()] &&\n supportedPlatformsAndArchitectures[platform()].includes(arch()))\n );\n};\n", "import { release, platform } from \"os\";\n\n/**\n * Determine if the current machine's platform is WSL\n * @returns { boolean } if the current platform is WSL\n */\nexport const isWsl = () => {\n return platform() === \"linux\" && release().toLowerCase().includes(\"wsl\");\n};\n", "import { isWsl } from \"../utils/is-wsl.js\";\n\nlet memo: string[] | undefined = undefined;\n\nexport const clearMemo = () => {\n memo = void 0;\n};\n\nconst npxAzureAuthCommand: string[] = [\n \"npm\",\n \"exec\",\n \"--silent\",\n \"--yes\",\n \"azureauth\",\n \"--\",\n];\nconst npxEnv = {\n ...process.env,\n // Use the version from the public registry to avoid a cycle\n npm_config_registry: \"https://registry.npmjs.org\",\n};\n\n/**\n * Get the executable path of azureauth command\n * @returns the string of the executable command to run azureauth, and any\n * necessary environment variables if using npx\n */\nexport const azureAuthCommand = (): {\n command: string[];\n env: Record<string, string>;\n} => {\n if (!memo) {\n memo = isWsl() ? [\"azureauth.exe\"] : npxAzureAuthCommand;\n }\n\n return { command: memo, env: npxEnv };\n};\n", "import { exec } from \"../utils/exec.js\";\nimport { azureAuthCommand } from \"./azureauth-command.js\";\n\nlet memo: boolean | undefined = undefined;\n\nexport const clearMemo = () => {\n memo = void 0;\n};\n\n/**\n * Determine if a valid version (>=0.8.0.0) is installed\n * @returns { boolean } Whether a valid version of azureauth is installed\n */\nexport const isAzureAuthInstalled = async (): Promise<boolean> => {\n if (memo === undefined) {\n const { command: authCommand, env } = azureAuthCommand();\n const command = `${authCommand.join(\" \")} --version`;\n\n try {\n const result = await exec(command, { env });\n // version must be >=0.8.0.0\n const [, minor] = result.stdout.split(\".\");\n memo = parseInt(minor) >= 8;\n } catch {\n // azureauth not installed\n memo = false;\n }\n }\n\n return memo;\n};\n", "import os from \"os\";\nimport fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { downloadFile } from \"../utils/request.js\";\nimport { execProcess } from \"../utils/exec.js\";\n\nconst CredentialProviderVersion = \"1.4.1\";\nconst OutputDir = path.join(\n path.dirname(fileURLToPath(import.meta.url)),\n \"..\",\n \".bin\",\n \"CredentialProvider.Microsoft\",\n \"v\" + CredentialProviderVersion,\n);\n\ntype CredentialProviderResponse = {\n Username: string;\n Password: string;\n};\n\nexport async function credentialProviderPat(\n registry: string,\n): Promise<CredentialProviderResponse> {\n const nugetFeedUrl = toNugetUrl(registry);\n const toolPath = await getCredentialProvider();\n return await invokeCredentialProvider(toolPath, nugetFeedUrl);\n}\n\nfunction toNugetUrl(registry: string): string {\n if (!registry.endsWith(\"/npm/registry/\")) {\n throw new Error(\n `Registry URL ${registry} is not a valid Azure Artifacts npm registry URL. Expected it to end with '/npm/registry/'`,\n );\n }\n return (\n \"https://\" + registry.replace(\"/npm/registry/\", \"/nuget/v3/index.json\")\n );\n}\n\nasync function invokeCredentialProvider(\n toolPath: string,\n nugetFeedUrl: string,\n): Promise<CredentialProviderResponse> {\n let response = \"\";\n await execProcess(toolPath, [\"-U\", nugetFeedUrl, \"-I\", \"-F\", \"Json\"], {\n stdio: \"pipe\",\n processStdOut: (data: string) => {\n response += data;\n },\n processStdErr: (data: string) => {\n console.error(data);\n },\n });\n try {\n const value = JSON.parse(response);\n return value as CredentialProviderResponse;\n } catch {\n throw new Error(`Failed to parse CredentialProvider output: ${response}`);\n }\n}\n\nfunction tryFileExists(executable: string): string | undefined {\n if (fs.existsSync(executable)) {\n return executable;\n } else if (fs.existsSync(executable + \".exe\")) {\n return executable + \".exe\";\n }\n return undefined;\n}\n\nasync function getCredentialProvider(): Promise<string> {\n let toolPath = tryFileExists(\n path.join(\n os.homedir(),\n \".nuget\",\n \"plugins\",\n \"netcore\",\n \"CredentialProvider.Microsoft\",\n \"CredentialProvider.Microsoft\",\n ),\n );\n if (toolPath) {\n return toolPath;\n }\n\n const downloadedFilePath = path.join(\n OutputDir,\n \"plugins\",\n \"netcore\",\n \"CredentialProvider.Microsoft\",\n \"CredentialProvider.Microsoft\",\n );\n toolPath = tryFileExists(downloadedFilePath);\n if (toolPath) {\n return toolPath;\n }\n\n await downloadCredentialProvider();\n toolPath = tryFileExists(downloadedFilePath);\n if (toolPath) {\n fs.chmodSync(toolPath, 0o755);\n } else {\n throw new Error(\n `CredentialProvider was not found at expected path after download: ${toolPath}`,\n );\n }\n\n return toolPath;\n}\n\nasync function downloadCredentialProvider(): Promise<void> {\n const downloadUrl = `https://github.com/microsoft/artifacts-credprovider/releases/download/v${CredentialProviderVersion}/Microsoft.Net8.${os.platform()}-${os.arch()}.NuGet.CredentialProvider.tar.gz`;\n const downloadPath = path.join(\n OutputDir,\n \"CredentialProvider.Microsoft.tar.gz\",\n );\n\n console.log(`🌐 Downloading ${downloadUrl}`);\n await downloadFile(downloadUrl, downloadPath);\n await execProcess(\"tar\", [\"-xzf\", downloadPath, \"-C\", OutputDir], {\n stdio: \"inherit\",\n });\n}\n", "import { type Configuration, type Plugin, SettingsType } from \"@yarnpkg/core\";\nimport { getConfigString } from \"./utils.ts\";\n\nexport type AuthPluginConfigurationValueMap = {\n adoNpmAuthToolPath?: string;\n adoNpmAuthFeedPrefix: string;\n};\n\nexport function getConfiguration() {\n return {\n adoNpmAuthToolPath: {\n description: `The path to the ADO authentication tool`,\n type: SettingsType.STRING,\n default: null,\n },\n adoNpmAuthFeedPrefix: {\n description: `The prefix to use for ADO NPM feed URLs`,\n type: SettingsType.STRING,\n default: `https://pkgs.dev.azure.com/`,\n },\n } as Plugin[\"configuration\"];\n}\n\nexport function loadConfiguration(\n configuration: Configuration,\n): AuthPluginConfigurationValueMap {\n return {\n adoNpmAuthToolPath: getConfigString(configuration, \"adoNpmAuthToolPath\"),\n adoNpmAuthFeedPrefix: getConfigString(\n configuration,\n \"adoNpmAuthFeedPrefix\",\n true,\n ),\n };\n}\n", "export function ifString(value: unknown): string | undefined {\n return typeof value === \"string\" ? value : undefined;\n}\n\nexport function asString(value: unknown): string {\n if (typeof value === \"string\") {\n return value;\n }\n throw new Error(`Expected a string but got: ${JSON.stringify(value)}`);\n}\n\nexport type MapLike = {\n get(key: string): unknown;\n};\n\nexport function getConfigString(\n config: MapLike | undefined,\n key: string,\n required: true,\n): string;\nexport function getConfigString(\n config: MapLike | undefined,\n key: string,\n required?: false,\n): string | undefined;\nexport function getConfigString(\n config: MapLike | undefined,\n key: string,\n required = false,\n): string | undefined {\n const value = config?.get(key);\n if (typeof value === \"string\") {\n return value;\n } else if (required) {\n throw new Error(`Expected configuration key \"${key}\" to be a string`);\n }\n return undefined;\n}\n\nexport function getConfigMap(\n config: MapLike | undefined,\n key: string,\n): MapLike | undefined {\n const value = config?.get(key);\n if (value && (value as MapLike).get !== undefined) {\n return value as MapLike;\n }\n return undefined;\n}\n", "import { type Configuration, type Ident } from \"@yarnpkg/core\";\nimport { TokenCache } from \"./tokenCache.ts\";\n\n/** not correctly exported so redefined here */\nexport type GetAuthHeaderOptions = {\n configuration: Configuration;\n ident?: Ident;\n};\n\n/**\n * Get the token for the given registry, using caching to avoid multiple calls, initializing\n * the cache on first use.\n */\nexport const getToken = (() => {\n let tokenCache: TokenCache | undefined = undefined;\n return (options: GetAuthHeaderOptions, registry: string) => {\n tokenCache ??= new TokenCache(options.configuration);\n return tokenCache.getToken(registry, options.ident);\n };\n})();\n"],
|
|
5
|
-
"mappings": "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",
|
|
6
|
-
"names": ["import_core", "hostname", "https", "path", "fs", "
|
|
3
|
+
"sources": ["../src/plugin.ts", "../src/tokenCache.ts", "../../ado-npm-auth-lib/src/utils/get-organization-from-feed-url.ts", "../../ado-npm-auth-lib/src/utils/encoding.ts", "../../ado-npm-auth-lib/src/utils/request.ts", "../../ado-npm-auth-lib/src/npmrc/generate-npmrc-pat.ts", "../../ado-npm-auth-lib/src/azureauth/ado.ts", "../../ado-npm-auth-lib/src/utils/exec.ts", "../../ado-npm-auth-lib/src/azureauth/is-supported-platform-and-architecture.ts", "../../ado-npm-auth-lib/src/utils/is-wsl.ts", "../../ado-npm-auth-lib/src/azureauth/azureauth-command.ts", "../../ado-npm-auth-lib/src/azureauth/is-azureauth-installed.ts", "../../ado-npm-auth-lib/src/npmrc/nugetCredentialProvider.ts", "../src/configuration.ts", "../src/utils.ts", "../src/getToken.ts"],
|
|
4
|
+
"sourcesContent": ["import { type Plugin } from \"@yarnpkg/core\";\nimport { type GetAuthHeaderOptions, getToken } from \"./getToken.ts\";\nimport { getConfiguration } from \"./configuration.ts\";\n\n/**\n * Called when getting the authentication header for a request to the npm registry.\n * You can use this mechanism to dynamically query a CLI for the credentials for a\n * specific registry.\n */\nasync function getNpmAuthenticationHeader(\n currentHeader: string | undefined,\n registry: string,\n options: GetAuthHeaderOptions,\n): Promise<string | undefined> {\n const customToken = getToken(options, registry);\n if (customToken !== undefined) {\n const token =\n typeof customToken === \"string\" ? customToken : await customToken;\n return `Bearer ${token}`;\n }\n return currentHeader;\n}\n\n/**\n * The plugin definition.\n */\nconst plugin: Plugin = {\n /**\n * Add the plugin configuration options\n */\n configuration: getConfiguration(),\n\n /**\n * Add a hook to authenticate on demand with npm feeds\n */\n hooks: {\n getNpmAuthenticationHeader,\n },\n};\n\n// eslint-disable-next-line no-restricted-exports\nexport default plugin;\n", "import {\n type Configuration,\n type Ident,\n StreamReport,\n formatUtils,\n} from \"@yarnpkg/core\";\nimport {\n getOrganizationFromFeedUrl,\n generateNpmrcPat,\n} from \"@microsoft/ado-npm-auth-lib\";\nimport { loadConfiguration } from \"./configuration.ts\";\nimport { getConfigMap, getConfigString, type MapLike } from \"./utils.ts\";\nimport { spawnSync } from \"node:child_process\";\nimport os from \"node:os\";\n\n/**\n * A simple in-memory cache for tokens per registry. This will attempt to load tokens from the\n * existing settings first, and if not found, will use the ADO CLI to get a new token.\n */\nexport class TokenCache {\n private configuration: Configuration;\n private prefix: string;\n private azureAuthPath?: string;\n private cache: Record<string, string | Promise<string>> = {};\n\n constructor(\n configuration: Configuration,\n loadConfig: typeof loadConfiguration = loadConfiguration,\n ) {\n this.configuration = configuration;\n const settings = loadConfig(configuration);\n this.prefix = settings.adoNpmAuthFeedPrefix ?? \"\";\n this.azureAuthPath = settings.adoNpmAuthToolPath || findAzureAuthPath();\n }\n\n /**\n * Will return the token for the given registry, either from cache or by fetching a new one. If it is in\n * the cache already, it will return it directly. Otherwise it will return a promise that resolves to the token\n * @param registry the registry/feed that we need to authenticate against\n */\n getToken(\n registry: string,\n ident?: Ident,\n ): string | Promise<string> | undefined {\n if (!this.prefix || registry.startsWith(this.prefix)) {\n return (this.cache[registry] ??= this.fetchToken(registry, ident));\n }\n return undefined;\n }\n\n /**\n * Do the work to fetch a token for the given registry. This will attempt to get it from yarnrc/env first,\n * and if not found, will use the ADO CLI to get a new token.\n *\n * @param registry registry to authenticate to\n * @param ident optional ident, used for configuration lookups (yarn pass through)\n * @returns a promise that resolves to a string\n */\n private async fetchToken(registry: string, ident?: Ident): Promise<string> {\n const configuration = this.configuration;\n await StreamReport.start(\n { configuration, stdout: process.stdout },\n async (report) => {\n const prettyRegistry = formatUtils.pretty(\n configuration,\n registry,\n formatUtils.Type.URL,\n );\n // first see if a token is set via .yarnrc, either hardcoded or via environment variable\n const authConfig = this.getAuthConfiguration(registry, ident);\n const tokenFromYarnrc = getConfigString(authConfig, \"npmAuthToken\");\n if (tokenFromYarnrc) {\n this.cache[registry] = tokenFromYarnrc;\n report.reportInfo(\n null,\n `Authenticated to: ${prettyRegistry} (via configuration)`,\n );\n return;\n }\n\n const organization = getOrganizationFromFeedUrl(registry);\n if (!organization) {\n throw new Error(\n `Could not determine organization from registry URL: ${registry}`,\n );\n }\n\n const pat = await generateNpmrcPat(\n organization,\n registry,\n false,\n this.azureAuthPath,\n );\n this.cache[registry] = pat;\n report.reportInfo(\n null,\n `Authenticated to: ${prettyRegistry} (via ADO CLI)`,\n );\n },\n );\n\n const pat = this.cache[registry];\n if (pat == null) {\n throw new Error(`Failed to authenticate to: ${registry}`);\n }\n return pat;\n }\n\n /**\n * Get the authentication configuration for the given registry and ident. This code was\n * taken from Yarn's npm plugin to match their logic. Importing that package directly results in\n * a massive bundle, so extracted just this logic.\n */\n private getAuthConfiguration(registry: string, ident?: Ident): MapLike {\n const scopeConfiguration = ident && this.getScopeConfiguration(ident.scope);\n\n if (scopeConfiguration?.get(`npmAuthToken`)) {\n return scopeConfiguration;\n }\n\n const registryConfiguration = this.getRegistryConfiguration(registry);\n\n return registryConfiguration ?? this.configuration;\n }\n\n /**\n * Return the auth configuration for the given scope if one has been set\n * @param scope package scope to use for lookups\n */\n private getScopeConfiguration(scope: string | null): MapLike | null {\n if (scope != null) {\n const scopeConfigurations = getConfigMap(this.configuration, `npmScopes`);\n const scopeConfiguration = getConfigMap(scopeConfigurations, scope);\n if (scopeConfiguration) {\n return scopeConfiguration;\n }\n }\n return null;\n }\n\n /**\n * Return the auth configuration for the given registry if one has been set\n * @param registry registry to get configuration for\n */\n private getRegistryConfiguration(registry: string): MapLike | null {\n // get the npmRegistries configuration map\n const registryConfigurations = getConfigMap(\n this.configuration,\n `npmRegistries`,\n );\n // normalize the registry url for lookups, same as yarn does internally\n const normalizedRegistry = registry.replace(/\\/$/, ``);\n\n // first try to get an exact match\n const exactEntry = getConfigMap(registryConfigurations, normalizedRegistry);\n if (typeof exactEntry !== `undefined`) {\n return exactEntry;\n }\n\n // then try without protocol\n const noProtocolEntry = getConfigMap(\n registryConfigurations,\n normalizedRegistry.replace(/^[a-z]+:/, ``),\n );\n\n return noProtocolEntry ?? null;\n }\n}\n\nfunction findAzureAuthPath(): string | undefined {\n const isWin = os.platform() === \"win32\";\n const execName = isWin ? \"azureauth.exe\" : \"azureauth\";\n const cmd = isWin ? \"where\" : \"which\";\n\n try {\n const result = spawnSync(cmd, [execName], { encoding: \"utf-8\" });\n if (result.status === 0 && result.stdout) {\n const line = result.stdout.split(/\\r?\\n/).find(Boolean);\n return line ? line.trim() : undefined;\n }\n } catch {\n // Ignore errors, fall through to undefined\n }\n\n return undefined;\n}\n", "/**\n * Extracts the organization and project details from a given Azure DevOps URL.\n * The function differentiates between the \"new style\" URLs that use 'dev.azure.com'\n * and \"old style\" URLs that use a subdomain of 'visualstudio.com'.\n *\n * @param {string} url - The Azure DevOps URL from which to extract details.\n * @returns {Object} An object containing the `organization` and `project` extracted from the URL.\n * @throws {Error} Throws an error if the URL is invalid, not in the expected format,\n * or does not contain the necessary information for extraction.\n *\n * @example\n * // New style URL\n * extractAdoDetails(\"https://dev.azure.com/contoso/WebsiteRedesign\");\n * // returns { organization: \"contoso\", project: \"WebsiteRedesign\" }\n *\n * // Old style URL\n * extractAdoDetails(\"https://contoso.visualstudio.com/WebsiteRedesign\");\n * // returns { organization: \"contoso\", project: \"WebsiteRedesign\" }\n *\n * // Invalid URL\n * extractAdoDetails(\"https://invalid.url.com\");\n * // throws Error\n */\nconst extractAdoDetails = (url: string) => {\n try {\n if (!url.startsWith(\"https://\")) {\n url = \"https://\" + url;\n }\n const parsedUrl = new URL(url);\n const hostname = parsedUrl.hostname;\n const pathname = parsedUrl.pathname;\n\n // Check for new style URLs (dev.azure.com)\n if (hostname.endsWith(\"dev.azure.com\")) {\n const pathSegments = pathname.split(\"/\").filter(Boolean); // Remove empty strings from the split result\n if (pathSegments.length >= 2) {\n return {\n organization: pathSegments[0],\n project: pathSegments[1],\n };\n } else {\n throw new Error(\n \"Not enough segments in path for a valid organization and project extraction.\",\n );\n }\n }\n\n // Check for old style URLs (visualstudio.com)\n if (hostname.endsWith(\"visualstudio.com\")) {\n const subdomain = hostname.split(\".\")[0];\n const pathSegments = pathname.split(\"/\").filter(Boolean);\n if (subdomain && pathSegments.length >= 1) {\n return {\n organization: subdomain,\n project: pathSegments[0],\n };\n } else {\n throw new Error(\n \"Not enough segments in path or missing subdomain for a valid organization and project extraction.\",\n );\n }\n }\n\n // If the URL does not match expected formats\n throw new Error(\n \"URL format not recognized or does not contain enough information.\",\n );\n } catch {\n throw new Error(\"Invalid URL or unsupported format\");\n }\n};\n\n/**\n * Get the ADO Org for a npm feed\n * @param {string} feedUrl URL of the feed to get the ADO organization from\n * @param {string} [defaultOrg] Backup org in case it cannot be determined from the feed url\n * @returns ADO Organization for the feed\n */\nexport const getOrganizationFromFeedUrl = (\n feedUrl: string,\n defaultOrg = \"\",\n) => {\n try {\n const { organization } = extractAdoDetails(feedUrl);\n return organization;\n } catch {\n return defaultOrg;\n }\n};\n", "/**\n * Create a base64 encoded string from a string\n * @param {string} input\n * @returns {string}\n */\nexport function toBase64(input: string | undefined): string {\n return Buffer.from(input || \"\").toString(\"base64\");\n}\n\n/**\n * Decode a base64 encoded string\n * @param {string} base64string\n * @returns\n */\nexport const fromBase64 = (base64string: string) =>\n Buffer.from(base64string, \"base64\").toString(\"utf8\");\n", "import https, { type RequestOptions } from \"node:https\";\nimport type { OutgoingHttpHeaders } from \"node:http\";\nimport fs from \"node:fs\";\nimport path from \"node:path\";\n\nconst defaultOptions: RequestOptions = {\n port: 443,\n method: \"GET\",\n};\n\n/**\n *\n * @param {import(\"http\").RequestOptions} options\n * @returns\n */\nexport const makeRequest = async (options: RequestOptions) => {\n return new Promise((resolve, reject) => {\n const mergedOptions = {\n ...defaultOptions,\n ...options,\n };\n\n const req = https.request(mergedOptions, (res) => {\n let data = \"\";\n let dataJson = {};\n const ok = res.statusCode === 200;\n\n res.on(\"data\", (d) => {\n data += d;\n });\n\n res.on(\"end\", () => {\n if (\n data &&\n hasAcceptHeaderValue(mergedOptions?.headers, \"application/json\")\n ) {\n dataJson = JSON.parse(data.toString().trim());\n }\n\n if (ok) {\n resolve(dataJson || data);\n } else {\n if (dataJson) {\n dataJson = { ...dataJson, statusCode: res.statusCode };\n }\n reject(\n dataJson || data || new Error(`Error code: ${res.statusCode}.`),\n );\n }\n });\n\n res.on(\"error\", (/** @type {string} */ error) => {\n reject(new Error(error as any));\n });\n });\n\n req.end();\n });\n};\n\nfunction hasAcceptHeaderValue(\n headers: OutgoingHttpHeaders | readonly string[] | undefined,\n acceptHeaderValueToCheck: string,\n): boolean {\n if (!headers) {\n return false;\n }\n\n if (Array.isArray(headers)) {\n for (const header of headers) {\n const indx = header.toLowerCase().indexOf(\"accept:\");\n if (indx === 0) {\n const acceptHeaderValue = header.slice(indx + 7).trim();\n const acceptHeaderValues = acceptHeaderValue\n .split(\",\")\n .map((value: string) => value.trim());\n if (acceptHeaderValues.includes(acceptHeaderValueToCheck)) {\n return true;\n }\n }\n }\n\n return false;\n }\n\n const normalizedHeaders = headers as OutgoingHttpHeaders;\n const acceptHeaderValue = Object.entries(normalizedHeaders).find(\n ([key]) => key.toLowerCase() === \"accept\",\n )?.[1];\n\n if (typeof acceptHeaderValue === \"string\") {\n return acceptHeaderValue === acceptHeaderValueToCheck;\n } else if (Array.isArray(acceptHeaderValue)) {\n return acceptHeaderValue.includes(acceptHeaderValueToCheck);\n } else {\n return false;\n }\n}\n\n/**\n * Downloads a file from a URL to a local path.\n * @param url The URL of the file to download.\n * @param downloadPath The local path to save the downloaded file.\n * @returns A promise that resolves when the download is complete.\n */\nexport async function downloadFile(\n url: string,\n downloadPath: string,\n): Promise<void> {\n return new Promise((resolve, reject) => {\n https\n .get(url, (response) => {\n // Handle redirects\n if (response.statusCode === 301 || response.statusCode === 302) {\n const redirectUrl = response.headers.location;\n if (redirectUrl) {\n downloadFile(redirectUrl, downloadPath).then(resolve).catch(reject);\n return;\n } else {\n reject(new Error(\"Redirect without location header\"));\n return;\n }\n }\n\n // Check for successful response\n if (response.statusCode !== 200) {\n reject(\n new Error(`HTTP ${response.statusCode}: ${response.statusMessage}`),\n );\n return;\n }\n\n let downloadStream: fs.WriteStream;\n try {\n const downloadDir = path.dirname(downloadPath);\n if (!fs.existsSync(downloadDir)) {\n fs.mkdirSync(downloadDir, { recursive: true });\n }\n\n downloadStream = fs.createWriteStream(downloadPath);\n } catch (error) {\n reject(error);\n return;\n }\n\n // Handle stream errors\n downloadStream.on(\"error\", (error) => {\n reject(error);\n });\n\n // Pipe the response to the file stream\n response.pipe(downloadStream);\n\n // The whole response has been received and written\n downloadStream.on(\"finish\", () => {\n resolve();\n });\n })\n .on(\"error\", (error) => {\n reject(error); // Reject on request error\n });\n });\n}\n", "import { hostname, platform } from \"node:os\";\nimport type { AdoPatResponse } from \"../azureauth/ado.js\";\nimport { adoPat } from \"../azureauth/ado.js\";\nimport { toBase64 } from \"../utils/encoding.js\";\nimport { credentialProviderPat } from \"./nugetCredentialProvider.js\";\n\n/**\n * Generates a valid ADO PAT, scoped for vso.packaging in the given ado organization, 30 minute timeout\n * @returns { string } a valid ADO PAT\n */\nexport const generateNpmrcPat = async (\n organization: string,\n feed: string,\n encode = false,\n azureAuthLocation?: string,\n): Promise<string> => {\n const name = `${hostname()}-${organization}`;\n const rawToken = await getRawToken(\n name,\n organization,\n feed,\n azureAuthLocation,\n );\n\n if (encode) {\n return toBase64(rawToken);\n }\n\n return rawToken;\n};\n\nasync function getRawToken(\n name: string,\n organization: string,\n feed: string,\n azureAuthLocation?: string,\n): Promise<string> {\n /**\n * Use vso.packaging_write to include \"Collaborator\" (Feed and Upstream Reader) permissions.\n * vso.packaging only provides \"Reader\" access (view/download packages).\n * vso.packaging_write provides \"Contributor\" access (publish/promote/deprecate) which includes\n * Collaborator permissions (save packages from upstream sources).\n * Reference: https://learn.microsoft.com/en-us/azure/devops/integrate/get-started/authentication/oauth#available-scopes\n *\n * I filed feedback on VSO to add this: https://developercommunity.visualstudio.com/t/the-scope-for-vsopackaging-SHOULD-inclu/10998135\n */\n const patScope = \"vso.packaging_write\";\n\n switch (platform()) {\n case \"win32\":\n case \"darwin\": {\n const pat = await adoPat(\n {\n promptHint: `Authenticate to ${organization} to generate a temporary token for npm`,\n organization,\n displayName: name,\n scope: [patScope],\n timeout: \"30\",\n output: \"json\",\n },\n azureAuthLocation,\n );\n return (pat as AdoPatResponse).token;\n }\n case \"linux\": {\n const cpPat = await credentialProviderPat(feed);\n return cpPat.Password;\n }\n default:\n throw new Error(\n `Platform ${platform()} is not supported for ADO authentication`,\n );\n }\n}\n", "import { arch, platform } from \"node:os\";\nimport { spawnSync } from \"node:child_process\";\nimport { exec } from \"../utils/exec.js\";\nimport { isSupportedPlatformAndArchitecture } from \"./is-supported-platform-and-architecture.js\";\nimport { azureAuthCommand } from \"./azureauth-command.js\";\nimport { isWsl } from \"../utils/is-wsl.js\";\nimport { isAzureAuthInstalled } from \"./is-azureauth-installed.js\";\n\nexport type AdoPatOptions = {\n promptHint: string;\n organization: string;\n displayName: string;\n scope: string[];\n output?: string;\n mode?: string;\n domain?: string;\n timeout?: string;\n};\n\nexport type AdoPatResponse = {\n displayName: string;\n validTo: string;\n scope: string[];\n targetAccounts: string[];\n validFrom: string;\n authorizationId: string;\n token: string;\n};\n\n/**\n * Wrapper for `azureauth ado pat`. Please run `azureauth ado pat --help` for full command options and description\n * @param options Options for PAT generation\n * @returns ADO PAT details\n */\nexport const adoPat = async (\n options: AdoPatOptions,\n azureAuthLocation?: string,\n): Promise<AdoPatResponse | string> => {\n if (!isSupportedPlatformAndArchitecture()) {\n throw new Error(\n `AzureAuth is not supported for platform ${platform()} and architecture ${arch()}`,\n );\n }\n\n const { command: authCommand, env } = azureAuthLocation\n ? {\n command: [azureAuthLocation],\n env: process.env,\n }\n : azureAuthCommand();\n\n const command = [\n ...authCommand,\n `ado`,\n `pat`,\n `--prompt-hint ${isWsl() ? options.promptHint : `\"${options.promptHint}\"`}`, // We only use spawn for WSL. spawn does not does not require prompt hint to be wrapped in quotes. exec does.\n `--organization ${options.organization}`,\n `--display-name ${options.displayName}`,\n ...options.scope.map((scope) => `--scope ${scope}`),\n ];\n\n if (options.output) {\n command.push(`--output ${options.output}`);\n }\n\n if (options.mode) {\n command.push(`--mode ${options.mode}`);\n }\n\n if (options.domain) {\n command.push(`--domain ${options.domain}`);\n }\n\n if (options.timeout) {\n command.push(`--timeout ${options.timeout}`);\n }\n\n try {\n let result;\n if (isWsl()) {\n try {\n result = spawnSync(command[0], command.slice(1), { encoding: \"utf-8\" });\n\n if (result.status !== 0 || (result.stderr && !result.stdout)) {\n throw new Error(\n `Azure Auth failed with exit code ${result.status}: ${result.stderr}`,\n );\n }\n } catch (error: any) {\n throw new Error(\n `Failed to get Ado Pat from system AzureAuth: ${error.message}`,\n );\n }\n } else {\n try {\n result = await exec(command.join(\" \"), { env });\n\n if (result.stderr && !result.stdout) {\n throw new Error(result.stderr);\n }\n } catch (error: any) {\n throw new Error(\n `Failed to get Ado Pat from npx AzureAuth: ${error.message}`,\n );\n }\n }\n\n if (options.output === \"json\") {\n try {\n return JSON.parse(result.stdout) as AdoPatResponse;\n } catch {\n throw new Error(`Failed to parse JSON output: ${result.stdout}`);\n }\n }\n\n return result.stdout;\n } catch (error: any) {\n if (!(await isAzureAuthInstalled())) {\n throw new Error(`AzureAuth is not installed: ${error}`);\n }\n\n throw new Error(error.message);\n }\n};\n", "import { exec as _exec, spawn } from \"node:child_process\";\nimport { promisify } from \"node:util\";\n\nexport const exec = promisify(_exec);\n\n/**\n * Executes a command as a child process.\n * @param tool The command to run.\n * @param args The arguments to pass to the command.\n * @param options Options for the child process.\n * @returns A promise that resolves when the process exits.\n */\nexport function execProcess(\n tool: string,\n args: string[],\n options?: {\n cwd?: string;\n env?: Record<string, string>;\n stdio?: \"pipe\" | \"inherit\" | \"ignore\";\n shell?: boolean | string;\n processStdOut?: (data: string) => void;\n processStdErr?: (data: string) => void;\n },\n): Promise<void> {\n return new Promise((resolve, reject) => {\n const cwd = options?.cwd || process.cwd();\n console.log(`🚀 Launching [${tool} ${args.join(\" \")}] in ${cwd}`);\n const result = spawn(tool, args, {\n cwd: cwd,\n env: options?.env || process.env,\n stdio: options?.stdio || \"inherit\",\n shell: options?.shell || false,\n });\n\n if (options?.stdio === \"pipe\") {\n result.stdout?.setEncoding(\"utf8\");\n result.stdout?.on(\"data\", function (data: Buffer) {\n const strData = data.toString(\"utf8\");\n options?.processStdOut?.(strData);\n });\n\n result.stderr?.setEncoding(\"utf8\");\n result.stderr?.on(\"data\", function (data: Buffer) {\n const strData = data.toString(\"utf8\");\n options?.processStdErr?.(strData);\n });\n }\n result.on(\"exit\", (code) => {\n if (code == 0) {\n resolve();\n } else {\n reject(new Error(`Process ${tool} exited with code ${code}`));\n }\n });\n });\n}\n", "import { arch, platform } from \"node:os\";\nimport { isWsl } from \"../utils/is-wsl.js\";\n\n/**\n * Determines if the currently running platform is supported by azureauth. Currently, supported platforms are Windows, Mac & WSL\n * @returns { boolean } if the current platform is supported by azureauth\n */\nexport const isSupportedPlatformAndArchitecture = (): boolean => {\n const supportedPlatformsAndArchitectures: Record<string, string[]> = {\n win32: [\"x64\"],\n darwin: [\"x64\", \"arm64\"],\n };\n\n return (\n isWsl() ||\n (supportedPlatformsAndArchitectures[platform()] &&\n supportedPlatformsAndArchitectures[platform()].includes(arch()))\n );\n};\n", "import { release, platform } from \"node:os\";\n\n/**\n * Determine if the current machine's platform is WSL\n * @returns { boolean } if the current platform is WSL\n */\nexport const isWsl = () => {\n return platform() === \"linux\" && release().toLowerCase().includes(\"wsl\");\n};\n", "import { isWsl } from \"../utils/is-wsl.js\";\n\nlet memo: string[] | undefined = undefined;\n\nexport const clearMemo = () => {\n memo = void 0;\n};\n\nconst npxAzureAuthCommand: string[] = [\n \"npm\",\n \"exec\",\n \"--silent\",\n \"--yes\",\n \"azureauth\",\n \"--\",\n];\nconst npxEnv = {\n ...process.env,\n // Use the version from the public registry to avoid a cycle\n npm_config_registry: \"https://registry.npmjs.org\",\n};\n\n/**\n * Get the executable path of azureauth command\n * @returns the string of the executable command to run azureauth, and any\n * necessary environment variables if using npx\n */\nexport const azureAuthCommand = (): {\n command: string[];\n env: Record<string, string>;\n} => {\n if (!memo) {\n memo = isWsl() ? [\"azureauth.exe\"] : npxAzureAuthCommand;\n }\n\n return { command: memo, env: npxEnv };\n};\n", "import { exec } from \"../utils/exec.js\";\nimport { azureAuthCommand } from \"./azureauth-command.js\";\n\nlet memo: boolean | undefined = undefined;\n\nexport const clearMemo = () => {\n memo = void 0;\n};\n\n/**\n * Determine if a valid version (>=0.8.0.0) is installed\n * @returns { boolean } Whether a valid version of azureauth is installed\n */\nexport const isAzureAuthInstalled = async (): Promise<boolean> => {\n if (memo === undefined) {\n const { command: authCommand, env } = azureAuthCommand();\n const command = `${authCommand.join(\" \")} --version`;\n\n try {\n const result = await exec(command, { env });\n // version must be >=0.8.0.0\n const [, minor] = result.stdout.split(\".\");\n memo = parseInt(minor) >= 8;\n } catch {\n // azureauth not installed\n memo = false;\n }\n }\n\n return memo;\n};\n", "import os from \"node:os\";\nimport fs from \"node:fs\";\nimport path from \"node:path\";\nimport { downloadFile } from \"../utils/request.js\";\nimport { execProcess } from \"../utils/exec.js\";\n\nconst CredentialProviderVersion = \"1.4.1\";\nconst OutputDir = path.resolve(\n \"..\",\n \".bin\",\n \"CredentialProvider.Microsoft\",\n \"v\" + CredentialProviderVersion,\n);\n\ntype CredentialProviderResponse = {\n Username: string;\n Password: string;\n};\n\nexport async function credentialProviderPat(\n registry: string,\n): Promise<CredentialProviderResponse> {\n const nugetFeedUrl = toNugetUrl(registry);\n const toolPath = await getCredentialProvider();\n return await invokeCredentialProvider(toolPath, nugetFeedUrl);\n}\n\nfunction toNugetUrl(registry: string): string {\n if (!registry.endsWith(\"/npm/registry/\")) {\n throw new Error(\n `Registry URL ${registry} is not a valid Azure Artifacts npm registry URL. Expected it to end with '/npm/registry/'`,\n );\n }\n return (\n \"https://\" + registry.replace(\"/npm/registry/\", \"/nuget/v3/index.json\")\n );\n}\n\nasync function invokeCredentialProvider(\n toolPath: string,\n nugetFeedUrl: string,\n): Promise<CredentialProviderResponse> {\n let response = \"\";\n await execProcess(toolPath, [\"-U\", nugetFeedUrl, \"-I\", \"-F\", \"Json\"], {\n stdio: \"pipe\",\n processStdOut: (data: string) => {\n response += data;\n },\n processStdErr: (data: string) => {\n console.error(data);\n },\n });\n try {\n const value = JSON.parse(response);\n return value as CredentialProviderResponse;\n } catch {\n throw new Error(`Failed to parse CredentialProvider output: ${response}`);\n }\n}\n\nfunction tryFileExists(executable: string): string | undefined {\n if (fs.existsSync(executable)) {\n return executable;\n } else if (fs.existsSync(executable + \".exe\")) {\n return executable + \".exe\";\n }\n return undefined;\n}\n\nasync function getCredentialProvider(): Promise<string> {\n let toolPath = tryFileExists(\n path.join(\n os.homedir(),\n \".nuget\",\n \"plugins\",\n \"netcore\",\n \"CredentialProvider.Microsoft\",\n \"CredentialProvider.Microsoft\",\n ),\n );\n if (toolPath) {\n return toolPath;\n }\n\n const downloadedFilePath = path.join(\n OutputDir,\n \"plugins\",\n \"netcore\",\n \"CredentialProvider.Microsoft\",\n \"CredentialProvider.Microsoft\",\n );\n toolPath = tryFileExists(downloadedFilePath);\n if (toolPath) {\n return toolPath;\n }\n\n await downloadCredentialProvider();\n toolPath = tryFileExists(downloadedFilePath);\n if (toolPath) {\n fs.chmodSync(toolPath, 0o755);\n } else {\n throw new Error(\n `CredentialProvider was not found at expected path after download: ${toolPath}`,\n );\n }\n\n return toolPath;\n}\n\nasync function downloadCredentialProvider(): Promise<void> {\n const downloadUrl = `https://github.com/microsoft/artifacts-credprovider/releases/download/v${CredentialProviderVersion}/Microsoft.Net8.${os.platform()}-${os.arch()}.NuGet.CredentialProvider.tar.gz`;\n const downloadPath = path.join(\n OutputDir,\n \"CredentialProvider.Microsoft.tar.gz\",\n );\n\n console.log(`🌐 Downloading ${downloadUrl}`);\n await downloadFile(downloadUrl, downloadPath);\n await execProcess(\"tar\", [\"-xzf\", downloadPath, \"-C\", OutputDir], {\n stdio: \"inherit\",\n });\n}\n", "import { type Configuration, type Plugin, SettingsType } from \"@yarnpkg/core\";\nimport { getConfigString } from \"./utils.ts\";\n\nexport type AuthPluginConfigurationValueMap = {\n adoNpmAuthToolPath?: string;\n adoNpmAuthFeedPrefix: string;\n};\n\nexport function getConfiguration() {\n return {\n adoNpmAuthToolPath: {\n description: `The path to the ADO authentication tool`,\n type: SettingsType.STRING,\n default: null,\n },\n adoNpmAuthFeedPrefix: {\n description: `The prefix to use for ADO NPM feed URLs`,\n type: SettingsType.STRING,\n default: `https://pkgs.dev.azure.com/`,\n },\n } as Plugin[\"configuration\"];\n}\n\nexport function loadConfiguration(\n configuration: Configuration,\n): AuthPluginConfigurationValueMap {\n return {\n adoNpmAuthToolPath: getConfigString(configuration, \"adoNpmAuthToolPath\"),\n adoNpmAuthFeedPrefix: getConfigString(\n configuration,\n \"adoNpmAuthFeedPrefix\",\n true,\n ),\n };\n}\n", "export function ifString(value: unknown): string | undefined {\n return typeof value === \"string\" ? value : undefined;\n}\n\nexport function asString(value: unknown): string {\n if (typeof value === \"string\") {\n return value;\n }\n throw new Error(`Expected a string but got: ${JSON.stringify(value)}`);\n}\n\nexport type MapLike = {\n get(key: string): unknown;\n};\n\nexport function getConfigString(\n config: MapLike | undefined,\n key: string,\n required: true,\n): string;\nexport function getConfigString(\n config: MapLike | undefined,\n key: string,\n required?: false,\n): string | undefined;\nexport function getConfigString(\n config: MapLike | undefined,\n key: string,\n required = false,\n): string | undefined {\n const value = config?.get(key);\n if (typeof value === \"string\") {\n return value;\n } else if (required) {\n throw new Error(`Expected configuration key \"${key}\" to be a string`);\n }\n return undefined;\n}\n\nexport function getConfigMap(\n config: MapLike | undefined,\n key: string,\n): MapLike | undefined {\n const value = config?.get(key);\n if (value && (value as MapLike).get !== undefined) {\n return value as MapLike;\n }\n return undefined;\n}\n", "import { type Configuration, type Ident } from \"@yarnpkg/core\";\nimport { TokenCache } from \"./tokenCache.ts\";\n\n/** not correctly exported so redefined here */\nexport type GetAuthHeaderOptions = {\n configuration: Configuration;\n ident?: Ident;\n};\n\n/**\n * Get the token for the given registry, using caching to avoid multiple calls, initializing\n * the cache on first use.\n */\nexport const getToken = (() => {\n let tokenCache: TokenCache | undefined = undefined;\n return (options: GetAuthHeaderOptions, registry: string) => {\n tokenCache ??= new TokenCache(options.configuration);\n return tokenCache.getToken(registry, options.ident);\n };\n})();\n"],
|
|
5
|
+
"mappings": "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",
|
|
6
|
+
"names": ["import_core", "hostname", "https", "path", "fs", "import_node_os", "import_node_os", "import_node_child_process", "_exec", "_a", "import_node_os", "memo", "memo", "import_node_os", "import_node_fs", "import_node_path", "path", "fs", "os", "import_node_child_process", "import_node_os", "pat", "os"]
|
|
7
7
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"inputs":{"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/git/git.js":{"bytes":5368,"imports":[{"path":"child_process","kind":"require-call","external":true}],"format":"cjs"},"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/git/config.js":{"bytes":685,"imports":[{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/git/git.js","kind":"require-call","original":"./git"}],"format":"cjs"},"../../node_modules/.store/protocols-npm-2.0.2-be93d980bc/package/lib/index.js":{"bytes":901,"imports":[],"format":"cjs"},"../../node_modules/.store/parse-path-npm-7.1.0-31f817ab99/package/lib/index.js":{"bytes":2568,"imports":[{"path":"../../node_modules/.store/protocols-npm-2.0.2-be93d980bc/package/lib/index.js","kind":"require-call","original":"protocols"}],"format":"cjs"},"../../node_modules/.store/parse-url-npm-9.2.0-625a9463d5/package/dist/index.js":{"bytes":12369,"imports":[{"path":"../../node_modules/.store/parse-path-npm-7.1.0-31f817ab99/package/lib/index.js","kind":"require-call","original":"parse-path"}],"format":"cjs"},"../../node_modules/.store/is-ssh-npm-1.4.1-f3350aff63/package/lib/index.js":{"bytes":883,"imports":[{"path":"../../node_modules/.store/protocols-npm-2.0.2-be93d980bc/package/lib/index.js","kind":"require-call","original":"protocols"}],"format":"cjs"},"../../node_modules/.store/git-up-npm-8.1.1-e314dffa32/package/lib/index.js":{"bytes":1501,"imports":[{"path":"../../node_modules/.store/parse-url-npm-9.2.0-625a9463d5/package/dist/index.js","kind":"require-call","original":"parse-url"},{"path":"../../node_modules/.store/is-ssh-npm-1.4.1-f3350aff63/package/lib/index.js","kind":"require-call","original":"is-ssh"}],"format":"cjs"},"../../node_modules/.store/git-url-parse-npm-16.1.0-52146a559b/package/lib/index.js":{"bytes":13313,"imports":[{"path":"../../node_modules/.store/git-up-npm-8.1.1-e314dffa32/package/lib/index.js","kind":"require-call","original":"git-up"}],"format":"cjs"},"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/git/getRepositoryName.js":{"bytes":2962,"imports":[{"path":"../../node_modules/.store/git-url-parse-npm-16.1.0-52146a559b/package/lib/index.js","kind":"require-call","original":"git-url-parse"}],"format":"cjs"},"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/git/getDefaultRemote.js":{"bytes":3614,"imports":[{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/paths.js","kind":"require-call","original":"../paths"},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/git/getRepositoryName.js","kind":"require-call","original":"./getRepositoryName"},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/git/git.js","kind":"require-call","original":"./git"}],"format":"cjs"},"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/git/gitUtilities.js":{"bytes":13460,"imports":[{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/git/config.js","kind":"require-call","original":"./config"},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/git/git.js","kind":"require-call","original":"./git"}],"format":"cjs"},"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/git/getDefaultRemoteBranch.js":{"bytes":1524,"imports":[{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/git/getDefaultRemote.js","kind":"require-call","original":"./getDefaultRemote"},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/git/git.js","kind":"require-call","original":"./git"},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/git/gitUtilities.js","kind":"require-call","original":"./gitUtilities"}],"format":"cjs"},"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/git/index.js":{"bytes":1966,"imports":[{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/git/git.js","kind":"require-call","original":"./git"},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/git/config.js","kind":"require-call","original":"./config"},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/git/getDefaultRemote.js","kind":"require-call","original":"./getDefaultRemote"},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/git/getDefaultRemoteBranch.js","kind":"require-call","original":"./getDefaultRemoteBranch"},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/git/gitUtilities.js","kind":"require-call","original":"./gitUtilities"}],"format":"cjs"},"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/logging.js":{"bytes":521,"imports":[],"format":"cjs"},"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/paths.js":{"bytes":3067,"imports":[{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/workspaces/getWorkspaceRoot.js","kind":"require-call","original":"./workspaces/getWorkspaceRoot"},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/git/index.js","kind":"require-call","original":"./git"},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/logging.js","kind":"require-call","original":"./logging"}],"format":"cjs"},"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/isCachingEnabled.js":{"bytes":504,"imports":[],"format":"cjs"},"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/workspaces/implementations/getWorkspaceManagerAndRoot.js":{"bytes":2750,"imports":[{"path":"path","kind":"require-call","external":true},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/paths.js","kind":"require-call","original":"../../paths"},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/isCachingEnabled.js","kind":"require-call","original":"../../isCachingEnabled"}],"format":"cjs"},"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/utils/array.js":{"bytes":608,"imports":[],"format":"cjs"},"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/utils/errno.js":{"bytes":234,"imports":[],"format":"cjs"},"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/utils/fs.js":{"bytes":756,"imports":[],"format":"cjs"},"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/utils/path.js":{"bytes":3010,"imports":[{"path":"os","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true}],"format":"cjs"},"../../node_modules/.store/is-extglob-npm-2.1.1-0870ea68b5/package/index.js":{"bytes":441,"imports":[],"format":"cjs"},"../../node_modules/.store/is-glob-npm-4.0.3-cb87bf1bdb/package/index.js":{"bytes":3628,"imports":[{"path":"../../node_modules/.store/is-extglob-npm-2.1.1-0870ea68b5/package/index.js","kind":"require-call","original":"is-extglob"}],"format":"cjs"},"../../node_modules/.store/glob-parent-npm-5.1.2-021ab32634/package/index.js":{"bytes":1120,"imports":[{"path":"../../node_modules/.store/is-glob-npm-4.0.3-cb87bf1bdb/package/index.js","kind":"require-call","original":"is-glob"},{"path":"path","kind":"require-call","external":true},{"path":"os","kind":"require-call","external":true}],"format":"cjs"},"../../node_modules/.store/braces-npm-3.0.3-582c14023c/package/lib/utils.js":{"bytes":2518,"imports":[],"format":"cjs"},"../../node_modules/.store/braces-npm-3.0.3-582c14023c/package/lib/stringify.js":{"bytes":708,"imports":[{"path":"../../node_modules/.store/braces-npm-3.0.3-582c14023c/package/lib/utils.js","kind":"require-call","original":"./utils"}],"format":"cjs"},"../../node_modules/.store/is-number-npm-7.0.0-060086935c/package/index.js":{"bytes":411,"imports":[],"format":"cjs"},"../../node_modules/.store/to-regex-range-npm-5.0.1-f1e8263b00/package/index.js":{"bytes":6481,"imports":[{"path":"../../node_modules/.store/is-number-npm-7.0.0-060086935c/package/index.js","kind":"require-call","original":"is-number"}],"format":"cjs"},"../../node_modules/.store/fill-range-npm-7.1.1-bf491486db/package/index.js":{"bytes":6406,"imports":[{"path":"util","kind":"require-call","external":true},{"path":"../../node_modules/.store/to-regex-range-npm-5.0.1-f1e8263b00/package/index.js","kind":"require-call","original":"to-regex-range"}],"format":"cjs"},"../../node_modules/.store/braces-npm-3.0.3-582c14023c/package/lib/compile.js":{"bytes":1501,"imports":[{"path":"../../node_modules/.store/fill-range-npm-7.1.1-bf491486db/package/index.js","kind":"require-call","original":"fill-range"},{"path":"../../node_modules/.store/braces-npm-3.0.3-582c14023c/package/lib/utils.js","kind":"require-call","original":"./utils"}],"format":"cjs"},"../../node_modules/.store/braces-npm-3.0.3-582c14023c/package/lib/expand.js":{"bytes":2797,"imports":[{"path":"../../node_modules/.store/fill-range-npm-7.1.1-bf491486db/package/index.js","kind":"require-call","original":"fill-range"},{"path":"../../node_modules/.store/braces-npm-3.0.3-582c14023c/package/lib/stringify.js","kind":"require-call","original":"./stringify"},{"path":"../../node_modules/.store/braces-npm-3.0.3-582c14023c/package/lib/utils.js","kind":"require-call","original":"./utils"}],"format":"cjs"},"../../node_modules/.store/braces-npm-3.0.3-582c14023c/package/lib/constants.js":{"bytes":1589,"imports":[],"format":"cjs"},"../../node_modules/.store/braces-npm-3.0.3-582c14023c/package/lib/parse.js":{"bytes":6899,"imports":[{"path":"../../node_modules/.store/braces-npm-3.0.3-582c14023c/package/lib/stringify.js","kind":"require-call","original":"./stringify"},{"path":"../../node_modules/.store/braces-npm-3.0.3-582c14023c/package/lib/constants.js","kind":"require-call","original":"./constants"}],"format":"cjs"},"../../node_modules/.store/braces-npm-3.0.3-582c14023c/package/index.js":{"bytes":4380,"imports":[{"path":"../../node_modules/.store/braces-npm-3.0.3-582c14023c/package/lib/stringify.js","kind":"require-call","original":"./lib/stringify"},{"path":"../../node_modules/.store/braces-npm-3.0.3-582c14023c/package/lib/compile.js","kind":"require-call","original":"./lib/compile"},{"path":"../../node_modules/.store/braces-npm-3.0.3-582c14023c/package/lib/expand.js","kind":"require-call","original":"./lib/expand"},{"path":"../../node_modules/.store/braces-npm-3.0.3-582c14023c/package/lib/parse.js","kind":"require-call","original":"./lib/parse"}],"format":"cjs"},"../../node_modules/.store/picomatch-npm-2.3.1-c782cfd986/package/lib/constants.js":{"bytes":4448,"imports":[{"path":"path","kind":"require-call","external":true}],"format":"cjs"},"../../node_modules/.store/picomatch-npm-2.3.1-c782cfd986/package/lib/utils.js":{"bytes":1885,"imports":[{"path":"path","kind":"require-call","external":true},{"path":"../../node_modules/.store/picomatch-npm-2.3.1-c782cfd986/package/lib/constants.js","kind":"require-call","original":"./constants"}],"format":"cjs"},"../../node_modules/.store/picomatch-npm-2.3.1-c782cfd986/package/lib/scan.js":{"bytes":9189,"imports":[{"path":"../../node_modules/.store/picomatch-npm-2.3.1-c782cfd986/package/lib/utils.js","kind":"require-call","original":"./utils"},{"path":"../../node_modules/.store/picomatch-npm-2.3.1-c782cfd986/package/lib/constants.js","kind":"require-call","original":"./constants"}],"format":"cjs"},"../../node_modules/.store/picomatch-npm-2.3.1-c782cfd986/package/lib/parse.js":{"bytes":27763,"imports":[{"path":"../../node_modules/.store/picomatch-npm-2.3.1-c782cfd986/package/lib/constants.js","kind":"require-call","original":"./constants"},{"path":"../../node_modules/.store/picomatch-npm-2.3.1-c782cfd986/package/lib/utils.js","kind":"require-call","original":"./utils"}],"format":"cjs"},"../../node_modules/.store/picomatch-npm-2.3.1-c782cfd986/package/lib/picomatch.js":{"bytes":9956,"imports":[{"path":"path","kind":"require-call","external":true},{"path":"../../node_modules/.store/picomatch-npm-2.3.1-c782cfd986/package/lib/scan.js","kind":"require-call","original":"./scan"},{"path":"../../node_modules/.store/picomatch-npm-2.3.1-c782cfd986/package/lib/parse.js","kind":"require-call","original":"./parse"},{"path":"../../node_modules/.store/picomatch-npm-2.3.1-c782cfd986/package/lib/utils.js","kind":"require-call","original":"./utils"},{"path":"../../node_modules/.store/picomatch-npm-2.3.1-c782cfd986/package/lib/constants.js","kind":"require-call","original":"./constants"}],"format":"cjs"},"../../node_modules/.store/picomatch-npm-2.3.1-c782cfd986/package/index.js":{"bytes":60,"imports":[{"path":"../../node_modules/.store/picomatch-npm-2.3.1-c782cfd986/package/lib/picomatch.js","kind":"require-call","original":"./lib/picomatch"}],"format":"cjs"},"../../node_modules/.store/micromatch-npm-4.0.8-c9570e4aca/package/index.js":{"bytes":13898,"imports":[{"path":"util","kind":"require-call","external":true},{"path":"../../node_modules/.store/braces-npm-3.0.3-582c14023c/package/index.js","kind":"require-call","original":"braces"},{"path":"../../node_modules/.store/picomatch-npm-2.3.1-c782cfd986/package/index.js","kind":"require-call","original":"picomatch"},{"path":"../../node_modules/.store/picomatch-npm-2.3.1-c782cfd986/package/lib/utils.js","kind":"require-call","original":"picomatch/lib/utils"}],"format":"cjs"},"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/utils/pattern.js":{"bytes":8520,"imports":[{"path":"path","kind":"require-call","external":true},{"path":"../../node_modules/.store/glob-parent-npm-5.1.2-021ab32634/package/index.js","kind":"require-call","original":"glob-parent"},{"path":"../../node_modules/.store/micromatch-npm-4.0.8-c9570e4aca/package/index.js","kind":"require-call","original":"micromatch"}],"format":"cjs"},"../../node_modules/.store/merge2-npm-1.4.1-a2507bd06c/package/index.js":{"bytes":3241,"imports":[{"path":"stream","kind":"require-call","external":true}],"format":"cjs"},"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/utils/stream.js":{"bytes":629,"imports":[{"path":"../../node_modules/.store/merge2-npm-1.4.1-a2507bd06c/package/index.js","kind":"require-call","original":"merge2"}],"format":"cjs"},"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/utils/string.js":{"bytes":298,"imports":[],"format":"cjs"},"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/utils/index.js":{"bytes":596,"imports":[{"path":"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/utils/array.js","kind":"require-call","original":"./array"},{"path":"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/utils/errno.js","kind":"require-call","original":"./errno"},{"path":"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/utils/fs.js","kind":"require-call","original":"./fs"},{"path":"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/utils/path.js","kind":"require-call","original":"./path"},{"path":"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/utils/pattern.js","kind":"require-call","original":"./pattern"},{"path":"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/utils/stream.js","kind":"require-call","original":"./stream"},{"path":"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/utils/string.js","kind":"require-call","original":"./string"}],"format":"cjs"},"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/managers/tasks.js":{"bytes":5531,"imports":[{"path":"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/utils/index.js","kind":"require-call","original":"../utils"}],"format":"cjs"},"../../node_modules/.store/@nodelib-fs.stat-npm-2.0.5-01f4dd3030/package/out/providers/async.js":{"bytes":1172,"imports":[],"format":"cjs"},"../../node_modules/.store/@nodelib-fs.stat-npm-2.0.5-01f4dd3030/package/out/providers/sync.js":{"bytes":619,"imports":[],"format":"cjs"},"../../node_modules/.store/@nodelib-fs.stat-npm-2.0.5-01f4dd3030/package/out/adapters/fs.js":{"bytes":582,"imports":[{"path":"fs","kind":"require-call","external":true}],"format":"cjs"},"../../node_modules/.store/@nodelib-fs.stat-npm-2.0.5-01f4dd3030/package/out/settings.js":{"bytes":696,"imports":[{"path":"../../node_modules/.store/@nodelib-fs.stat-npm-2.0.5-01f4dd3030/package/out/adapters/fs.js","kind":"require-call","original":"./adapters/fs"}],"format":"cjs"},"../../node_modules/.store/@nodelib-fs.stat-npm-2.0.5-01f4dd3030/package/out/index.js":{"bytes":985,"imports":[{"path":"../../node_modules/.store/@nodelib-fs.stat-npm-2.0.5-01f4dd3030/package/out/providers/async.js","kind":"require-call","original":"./providers/async"},{"path":"../../node_modules/.store/@nodelib-fs.stat-npm-2.0.5-01f4dd3030/package/out/providers/sync.js","kind":"require-call","original":"./providers/sync"},{"path":"../../node_modules/.store/@nodelib-fs.stat-npm-2.0.5-01f4dd3030/package/out/settings.js","kind":"require-call","original":"./settings"}],"format":"cjs"},"../../node_modules/.store/queue-microtask-npm-1.2.3-fcc98e4e2d/package/index.js":{"bytes":402,"imports":[],"format":"cjs"},"../../node_modules/.store/run-parallel-npm-1.2.0-3f47ff2034/package/index.js":{"bytes":1034,"imports":[{"path":"../../node_modules/.store/queue-microtask-npm-1.2.3-fcc98e4e2d/package/index.js","kind":"require-call","original":"queue-microtask"}],"format":"cjs"},"../../node_modules/.store/@nodelib-fs.scandir-npm-2.1.5-89c67370dd/package/out/constants.js":{"bytes":990,"imports":[],"format":"cjs"},"../../node_modules/.store/@nodelib-fs.scandir-npm-2.1.5-89c67370dd/package/out/utils/fs.js":{"bytes":756,"imports":[],"format":"cjs"},"../../node_modules/.store/@nodelib-fs.scandir-npm-2.1.5-89c67370dd/package/out/utils/index.js":{"bytes":143,"imports":[{"path":"../../node_modules/.store/@nodelib-fs.scandir-npm-2.1.5-89c67370dd/package/out/utils/fs.js","kind":"require-call","original":"./fs"}],"format":"cjs"},"../../node_modules/.store/@nodelib-fs.scandir-npm-2.1.5-89c67370dd/package/out/providers/common.js":{"bytes":419,"imports":[],"format":"cjs"},"../../node_modules/.store/@nodelib-fs.scandir-npm-2.1.5-89c67370dd/package/out/providers/async.js":{"bytes":3686,"imports":[{"path":"../../node_modules/.store/@nodelib-fs.stat-npm-2.0.5-01f4dd3030/package/out/index.js","kind":"require-call","original":"@nodelib/fs.stat"},{"path":"../../node_modules/.store/run-parallel-npm-1.2.0-3f47ff2034/package/index.js","kind":"require-call","original":"run-parallel"},{"path":"../../node_modules/.store/@nodelib-fs.scandir-npm-2.1.5-89c67370dd/package/out/constants.js","kind":"require-call","original":"../constants"},{"path":"../../node_modules/.store/@nodelib-fs.scandir-npm-2.1.5-89c67370dd/package/out/utils/index.js","kind":"require-call","original":"../utils"},{"path":"../../node_modules/.store/@nodelib-fs.scandir-npm-2.1.5-89c67370dd/package/out/providers/common.js","kind":"require-call","original":"./common"}],"format":"cjs"},"../../node_modules/.store/@nodelib-fs.scandir-npm-2.1.5-89c67370dd/package/out/providers/sync.js":{"bytes":1990,"imports":[{"path":"../../node_modules/.store/@nodelib-fs.stat-npm-2.0.5-01f4dd3030/package/out/index.js","kind":"require-call","original":"@nodelib/fs.stat"},{"path":"../../node_modules/.store/@nodelib-fs.scandir-npm-2.1.5-89c67370dd/package/out/constants.js","kind":"require-call","original":"../constants"},{"path":"../../node_modules/.store/@nodelib-fs.scandir-npm-2.1.5-89c67370dd/package/out/utils/index.js","kind":"require-call","original":"../utils"},{"path":"../../node_modules/.store/@nodelib-fs.scandir-npm-2.1.5-89c67370dd/package/out/providers/common.js","kind":"require-call","original":"./common"}],"format":"cjs"},"../../node_modules/.store/@nodelib-fs.scandir-npm-2.1.5-89c67370dd/package/out/adapters/fs.js":{"bytes":640,"imports":[{"path":"fs","kind":"require-call","external":true}],"format":"cjs"},"../../node_modules/.store/@nodelib-fs.scandir-npm-2.1.5-89c67370dd/package/out/settings.js":{"bytes":1076,"imports":[{"path":"path","kind":"require-call","external":true},{"path":"../../node_modules/.store/@nodelib-fs.stat-npm-2.0.5-01f4dd3030/package/out/index.js","kind":"require-call","original":"@nodelib/fs.stat"},{"path":"../../node_modules/.store/@nodelib-fs.scandir-npm-2.1.5-89c67370dd/package/out/adapters/fs.js","kind":"require-call","original":"./adapters/fs"}],"format":"cjs"},"../../node_modules/.store/@nodelib-fs.scandir-npm-2.1.5-89c67370dd/package/out/index.js":{"bytes":1009,"imports":[{"path":"../../node_modules/.store/@nodelib-fs.scandir-npm-2.1.5-89c67370dd/package/out/providers/async.js","kind":"require-call","original":"./providers/async"},{"path":"../../node_modules/.store/@nodelib-fs.scandir-npm-2.1.5-89c67370dd/package/out/providers/sync.js","kind":"require-call","original":"./providers/sync"},{"path":"../../node_modules/.store/@nodelib-fs.scandir-npm-2.1.5-89c67370dd/package/out/settings.js","kind":"require-call","original":"./settings"}],"format":"cjs"},"../../node_modules/.store/reusify-npm-1.1.0-96242be57f/package/reusify.js":{"bytes":454,"imports":[],"format":"cjs"},"../../node_modules/.store/fastq-npm-1.19.1-ca0a13ec3f/package/queue.js":{"bytes":6244,"imports":[{"path":"../../node_modules/.store/reusify-npm-1.1.0-96242be57f/package/reusify.js","kind":"require-call","original":"reusify"}],"format":"cjs"},"../../node_modules/.store/@nodelib-fs.walk-npm-1.2.8-b4a89da548/package/out/readers/common.js":{"bytes":1052,"imports":[],"format":"cjs"},"../../node_modules/.store/@nodelib-fs.walk-npm-1.2.8-b4a89da548/package/out/readers/reader.js":{"bytes":358,"imports":[{"path":"../../node_modules/.store/@nodelib-fs.walk-npm-1.2.8-b4a89da548/package/out/readers/common.js","kind":"require-call","original":"./common"}],"format":"cjs"},"../../node_modules/.store/@nodelib-fs.walk-npm-1.2.8-b4a89da548/package/out/readers/async.js":{"bytes":3157,"imports":[{"path":"events","kind":"require-call","external":true},{"path":"../../node_modules/.store/@nodelib-fs.scandir-npm-2.1.5-89c67370dd/package/out/index.js","kind":"require-call","original":"@nodelib/fs.scandir"},{"path":"../../node_modules/.store/fastq-npm-1.19.1-ca0a13ec3f/package/queue.js","kind":"require-call","original":"fastq"},{"path":"../../node_modules/.store/@nodelib-fs.walk-npm-1.2.8-b4a89da548/package/out/readers/common.js","kind":"require-call","original":"./common"},{"path":"../../node_modules/.store/@nodelib-fs.walk-npm-1.2.8-b4a89da548/package/out/readers/reader.js","kind":"require-call","original":"./reader"}],"format":"cjs"},"../../node_modules/.store/@nodelib-fs.walk-npm-1.2.8-b4a89da548/package/out/providers/async.js":{"bytes":895,"imports":[{"path":"../../node_modules/.store/@nodelib-fs.walk-npm-1.2.8-b4a89da548/package/out/readers/async.js","kind":"require-call","original":"../readers/async"}],"format":"cjs"},"../../node_modules/.store/@nodelib-fs.walk-npm-1.2.8-b4a89da548/package/out/providers/stream.js":{"bytes":1021,"imports":[{"path":"stream","kind":"require-call","external":true},{"path":"../../node_modules/.store/@nodelib-fs.walk-npm-1.2.8-b4a89da548/package/out/readers/async.js","kind":"require-call","original":"../readers/async"}],"format":"cjs"},"../../node_modules/.store/@nodelib-fs.walk-npm-1.2.8-b4a89da548/package/out/readers/sync.js":{"bytes":1911,"imports":[{"path":"../../node_modules/.store/@nodelib-fs.scandir-npm-2.1.5-89c67370dd/package/out/index.js","kind":"require-call","original":"@nodelib/fs.scandir"},{"path":"../../node_modules/.store/@nodelib-fs.walk-npm-1.2.8-b4a89da548/package/out/readers/common.js","kind":"require-call","original":"./common"},{"path":"../../node_modules/.store/@nodelib-fs.walk-npm-1.2.8-b4a89da548/package/out/readers/reader.js","kind":"require-call","original":"./reader"}],"format":"cjs"},"../../node_modules/.store/@nodelib-fs.walk-npm-1.2.8-b4a89da548/package/out/providers/sync.js":{"bytes":407,"imports":[{"path":"../../node_modules/.store/@nodelib-fs.walk-npm-1.2.8-b4a89da548/package/out/readers/sync.js","kind":"require-call","original":"../readers/sync"}],"format":"cjs"},"../../node_modules/.store/@nodelib-fs.walk-npm-1.2.8-b4a89da548/package/out/settings.js":{"bytes":1250,"imports":[{"path":"path","kind":"require-call","external":true},{"path":"../../node_modules/.store/@nodelib-fs.scandir-npm-2.1.5-89c67370dd/package/out/index.js","kind":"require-call","original":"@nodelib/fs.scandir"}],"format":"cjs"},"../../node_modules/.store/@nodelib-fs.walk-npm-1.2.8-b4a89da548/package/out/index.js":{"bytes":1390,"imports":[{"path":"../../node_modules/.store/@nodelib-fs.walk-npm-1.2.8-b4a89da548/package/out/providers/async.js","kind":"require-call","original":"./providers/async"},{"path":"../../node_modules/.store/@nodelib-fs.walk-npm-1.2.8-b4a89da548/package/out/providers/stream.js","kind":"require-call","original":"./providers/stream"},{"path":"../../node_modules/.store/@nodelib-fs.walk-npm-1.2.8-b4a89da548/package/out/providers/sync.js","kind":"require-call","original":"./providers/sync"},{"path":"../../node_modules/.store/@nodelib-fs.walk-npm-1.2.8-b4a89da548/package/out/settings.js","kind":"require-call","original":"./settings"}],"format":"cjs"},"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/readers/reader.js":{"bytes":1063,"imports":[{"path":"path","kind":"require-call","external":true},{"path":"../../node_modules/.store/@nodelib-fs.stat-npm-2.0.5-01f4dd3030/package/out/index.js","kind":"require-call","original":"@nodelib/fs.stat"},{"path":"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/utils/index.js","kind":"require-call","original":"../utils"}],"format":"cjs"},"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/readers/stream.js":{"bytes":1870,"imports":[{"path":"stream","kind":"require-call","external":true},{"path":"../../node_modules/.store/@nodelib-fs.stat-npm-2.0.5-01f4dd3030/package/out/index.js","kind":"require-call","original":"@nodelib/fs.stat"},{"path":"../../node_modules/.store/@nodelib-fs.walk-npm-1.2.8-b4a89da548/package/out/index.js","kind":"require-call","original":"@nodelib/fs.walk"},{"path":"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/readers/reader.js","kind":"require-call","original":"./reader"}],"format":"cjs"},"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/readers/async.js":{"bytes":1213,"imports":[{"path":"../../node_modules/.store/@nodelib-fs.walk-npm-1.2.8-b4a89da548/package/out/index.js","kind":"require-call","original":"@nodelib/fs.walk"},{"path":"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/readers/reader.js","kind":"require-call","original":"./reader"},{"path":"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/readers/stream.js","kind":"require-call","original":"./stream"}],"format":"cjs"},"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/providers/matchers/matcher.js":{"bytes":1568,"imports":[{"path":"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/utils/index.js","kind":"require-call","original":"../../utils"}],"format":"cjs"},"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/providers/matchers/partial.js":{"bytes":1421,"imports":[{"path":"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/providers/matchers/matcher.js","kind":"require-call","original":"./matcher"}],"format":"cjs"},"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/providers/filters/deep.js":{"bytes":2466,"imports":[{"path":"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/utils/index.js","kind":"require-call","original":"../../utils"},{"path":"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/providers/matchers/partial.js","kind":"require-call","original":"../matchers/partial"}],"format":"cjs"},"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/providers/filters/entry.js":{"bytes":3556,"imports":[{"path":"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/utils/index.js","kind":"require-call","original":"../../utils"}],"format":"cjs"},"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/providers/filters/error.js":{"bytes":441,"imports":[{"path":"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/utils/index.js","kind":"require-call","original":"../../utils"}],"format":"cjs"},"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/providers/transformers/entry.js":{"bytes":845,"imports":[{"path":"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/utils/index.js","kind":"require-call","original":"../../utils"}],"format":"cjs"},"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/providers/provider.js":{"bytes":2000,"imports":[{"path":"path","kind":"require-call","external":true},{"path":"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/providers/filters/deep.js","kind":"require-call","original":"./filters/deep"},{"path":"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/providers/filters/entry.js","kind":"require-call","original":"./filters/entry"},{"path":"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/providers/filters/error.js","kind":"require-call","original":"./filters/error"},{"path":"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/providers/transformers/entry.js","kind":"require-call","original":"./transformers/entry"}],"format":"cjs"},"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/providers/async.js":{"bytes":814,"imports":[{"path":"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/readers/async.js","kind":"require-call","original":"../readers/async"},{"path":"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/providers/provider.js","kind":"require-call","original":"./provider"}],"format":"cjs"},"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/providers/stream.js":{"bytes":1198,"imports":[{"path":"stream","kind":"require-call","external":true},{"path":"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/readers/stream.js","kind":"require-call","original":"../readers/stream"},{"path":"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/providers/provider.js","kind":"require-call","original":"./provider"}],"format":"cjs"},"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/readers/sync.js":{"bytes":1330,"imports":[{"path":"../../node_modules/.store/@nodelib-fs.stat-npm-2.0.5-01f4dd3030/package/out/index.js","kind":"require-call","original":"@nodelib/fs.stat"},{"path":"../../node_modules/.store/@nodelib-fs.walk-npm-1.2.8-b4a89da548/package/out/index.js","kind":"require-call","original":"@nodelib/fs.walk"},{"path":"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/readers/reader.js","kind":"require-call","original":"./reader"}],"format":"cjs"},"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/providers/sync.js":{"bytes":779,"imports":[{"path":"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/readers/sync.js","kind":"require-call","original":"../readers/sync"},{"path":"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/providers/provider.js","kind":"require-call","original":"./provider"}],"format":"cjs"},"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/settings.js":{"bytes":2849,"imports":[{"path":"fs","kind":"require-call","external":true},{"path":"os","kind":"require-call","external":true}],"format":"cjs"},"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/index.js":{"bytes":4091,"imports":[{"path":"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/managers/tasks.js","kind":"require-call","original":"./managers/tasks"},{"path":"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/providers/async.js","kind":"require-call","original":"./providers/async"},{"path":"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/providers/stream.js","kind":"require-call","original":"./providers/stream"},{"path":"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/providers/sync.js","kind":"require-call","original":"./providers/sync"},{"path":"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/settings.js","kind":"require-call","original":"./settings"},{"path":"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/utils/index.js","kind":"require-call","original":"./utils"}],"format":"cjs"},"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/getPackagePaths.js":{"bytes":2193,"imports":[{"path":"path","kind":"require-call","external":true},{"path":"../../node_modules/.store/fast-glob-npm-3.3.3-2a653be532/package/out/index.js","kind":"require-call","original":"fast-glob"},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/isCachingEnabled.js","kind":"require-call","original":"./isCachingEnabled"}],"format":"cjs"},"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/infoFromPackageJson.js":{"bytes":345,"imports":[],"format":"cjs"},"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/getPackageInfo.js":{"bytes":2384,"imports":[{"path":"fs","kind":"require-call","external":true},{"path":"fs/promises","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/infoFromPackageJson.js","kind":"require-call","original":"./infoFromPackageJson"},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/logging.js","kind":"require-call","original":"./logging"}],"format":"cjs"},"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/workspaces/getWorkspacePackageInfo.js":{"bytes":3048,"imports":[{"path":"path","kind":"require-call","external":true},{"path":"fs/promises","kind":"require-call","external":true},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/logging.js","kind":"require-call","original":"../logging"},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/infoFromPackageJson.js","kind":"require-call","original":"../infoFromPackageJson"},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/getPackageInfo.js","kind":"require-call","original":"../getPackageInfo"}],"format":"cjs"},"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/workspaces/implementations/packageJsonWorkspaces.js":{"bytes":4401,"imports":[{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/getPackagePaths.js","kind":"require-call","original":"../../getPackagePaths"},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/workspaces/getWorkspacePackageInfo.js","kind":"require-call","original":"../getWorkspacePackageInfo"},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/logging.js","kind":"require-call","original":"../../logging"}],"format":"cjs"},"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/common.js":{"bytes":1177,"imports":[],"format":"cjs"},"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/exception.js":{"bytes":1299,"imports":[],"format":"cjs"},"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/snippet.js":{"bytes":3088,"imports":[{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/common.js","kind":"require-call","original":"./common"}],"format":"cjs"},"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type.js":{"bytes":1849,"imports":[{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/exception.js","kind":"require-call","original":"./exception"}],"format":"cjs"},"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/schema.js":{"bytes":3384,"imports":[{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/exception.js","kind":"require-call","original":"./exception"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type.js","kind":"require-call","original":"./type"}],"format":"cjs"},"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type/str.js":{"bytes":189,"imports":[{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type.js","kind":"require-call","original":"../type"}],"format":"cjs"},"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type/seq.js":{"bytes":191,"imports":[{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type.js","kind":"require-call","original":"../type"}],"format":"cjs"},"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type/map.js":{"bytes":190,"imports":[{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type.js","kind":"require-call","original":"../type"}],"format":"cjs"},"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/schema/failsafe.js":{"bytes":278,"imports":[{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/schema.js","kind":"require-call","original":"../schema"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type/str.js","kind":"require-call","original":"../type/str"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type/seq.js","kind":"require-call","original":"../type/seq"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type/map.js","kind":"require-call","original":"../type/map"}],"format":"cjs"},"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type/null.js":{"bytes":808,"imports":[{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type.js","kind":"require-call","original":"../type"}],"format":"cjs"},"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type/bool.js":{"bytes":971,"imports":[{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type.js","kind":"require-call","original":"../type"}],"format":"cjs"},"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type/int.js":{"bytes":3691,"imports":[{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/common.js","kind":"require-call","original":"../common"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type.js","kind":"require-call","original":"../type"}],"format":"cjs"},"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type/float.js":{"bytes":2467,"imports":[{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/common.js","kind":"require-call","original":"../common"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type.js","kind":"require-call","original":"../type"}],"format":"cjs"},"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/schema/json.js":{"bytes":523,"imports":[{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/schema/failsafe.js","kind":"require-call","original":"./failsafe"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type/null.js","kind":"require-call","original":"../type/null"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type/bool.js","kind":"require-call","original":"../type/bool"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type/int.js","kind":"require-call","original":"../type/int"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type/float.js","kind":"require-call","original":"../type/float"}],"format":"cjs"},"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/schema/core.js":{"bytes":288,"imports":[{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/schema/json.js","kind":"require-call","original":"./json"}],"format":"cjs"},"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type/timestamp.js":{"bytes":2571,"imports":[{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type.js","kind":"require-call","original":"../type"}],"format":"cjs"},"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type/merge.js":{"bytes":230,"imports":[{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type.js","kind":"require-call","original":"../type"}],"format":"cjs"},"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type/binary.js":{"bytes":2912,"imports":[{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type.js","kind":"require-call","original":"../type"}],"format":"cjs"},"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type/omap.js":{"bytes":1023,"imports":[{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type.js","kind":"require-call","original":"../type"}],"format":"cjs"},"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type/pairs.js":{"bytes":1084,"imports":[{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type.js","kind":"require-call","original":"../type"}],"format":"cjs"},"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type/set.js":{"bytes":547,"imports":[{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type.js","kind":"require-call","original":"../type"}],"format":"cjs"},"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/schema/default.js":{"bytes":538,"imports":[{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/schema/core.js","kind":"require-call","original":"./core"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type/timestamp.js","kind":"require-call","original":"../type/timestamp"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type/merge.js","kind":"require-call","original":"../type/merge"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type/binary.js","kind":"require-call","original":"../type/binary"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type/omap.js","kind":"require-call","original":"../type/omap"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type/pairs.js","kind":"require-call","original":"../type/pairs"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type/set.js","kind":"require-call","original":"../type/set"}],"format":"cjs"},"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/loader.js":{"bytes":47356,"imports":[{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/common.js","kind":"require-call","original":"./common"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/exception.js","kind":"require-call","original":"./exception"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/snippet.js","kind":"require-call","original":"./snippet"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/schema/default.js","kind":"require-call","original":"./schema/default"}],"format":"cjs"},"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/dumper.js":{"bytes":31893,"imports":[{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/common.js","kind":"require-call","original":"./common"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/exception.js","kind":"require-call","original":"./exception"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/schema/default.js","kind":"require-call","original":"./schema/default"}],"format":"cjs"},"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/index.js":{"bytes":1793,"imports":[{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/loader.js","kind":"require-call","original":"./lib/loader"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/dumper.js","kind":"require-call","original":"./lib/dumper"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type.js","kind":"require-call","original":"./lib/type"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/schema.js","kind":"require-call","original":"./lib/schema"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/schema/failsafe.js","kind":"require-call","original":"./lib/schema/failsafe"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/schema/json.js","kind":"require-call","original":"./lib/schema/json"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/schema/core.js","kind":"require-call","original":"./lib/schema/core"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/schema/default.js","kind":"require-call","original":"./lib/schema/default"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/exception.js","kind":"require-call","original":"./lib/exception"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type/binary.js","kind":"require-call","original":"./lib/type/binary"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type/float.js","kind":"require-call","original":"./lib/type/float"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type/map.js","kind":"require-call","original":"./lib/type/map"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type/null.js","kind":"require-call","original":"./lib/type/null"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type/pairs.js","kind":"require-call","original":"./lib/type/pairs"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type/set.js","kind":"require-call","original":"./lib/type/set"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type/timestamp.js","kind":"require-call","original":"./lib/type/timestamp"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type/bool.js","kind":"require-call","original":"./lib/type/bool"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type/int.js","kind":"require-call","original":"./lib/type/int"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type/merge.js","kind":"require-call","original":"./lib/type/merge"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type/omap.js","kind":"require-call","original":"./lib/type/omap"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type/seq.js","kind":"require-call","original":"./lib/type/seq"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/lib/type/str.js","kind":"require-call","original":"./lib/type/str"}],"format":"cjs"},"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/lockfile/readYaml.js":{"bytes":682,"imports":[{"path":"fs","kind":"require-call","external":true},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/index.js","kind":"require-call","original":"js-yaml"}],"format":"cjs"},"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/workspaces/implementations/yarn.js":{"bytes":4094,"imports":[{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/workspaces/implementations/index.js","kind":"require-call","original":"./index"},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/workspaces/implementations/packageJsonWorkspaces.js","kind":"require-call","original":"./packageJsonWorkspaces"},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/getPackageInfo.js","kind":"require-call","original":"../../getPackageInfo"},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/logging.js","kind":"require-call","original":"../../logging"},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/lockfile/readYaml.js","kind":"require-call","original":"../../lockfile/readYaml"}],"format":"cjs"},"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/workspaces/implementations/pnpm.js":{"bytes":3792,"imports":[{"path":"path","kind":"require-call","external":true},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/getPackagePaths.js","kind":"require-call","original":"../../getPackagePaths"},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/workspaces/getWorkspacePackageInfo.js","kind":"require-call","original":"../getWorkspacePackageInfo"},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/lockfile/readYaml.js","kind":"require-call","original":"../../lockfile/readYaml"},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/logging.js","kind":"require-call","original":"../../logging"},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/workspaces/implementations/getWorkspaceManagerAndRoot.js","kind":"require-call","original":"./getWorkspaceManagerAndRoot"}],"format":"cjs"},"../../node_modules/.store/jju-npm-1.4.0-670678eaa3/package/lib/unicode.js":{"bytes":11191,"imports":[],"format":"cjs"},"../../node_modules/.store/jju-npm-1.4.0-670678eaa3/package/lib/parse.js":{"bytes":18591,"imports":[{"path":"../../node_modules/.store/jju-npm-1.4.0-670678eaa3/package/lib/unicode.js","kind":"require-call","original":"./unicode"}],"format":"cjs"},"../../node_modules/.store/jju-npm-1.4.0-670678eaa3/package/lib/stringify.js":{"bytes":10875,"imports":[{"path":"../../node_modules/.store/jju-npm-1.4.0-670678eaa3/package/lib/unicode.js","kind":"require-call","original":"./unicode"}],"format":"cjs"},"../../node_modules/.store/jju-npm-1.4.0-670678eaa3/package/lib/analyze.js":{"bytes":2422,"imports":[{"path":"../../node_modules/.store/jju-npm-1.4.0-670678eaa3/package/lib/parse.js","kind":"require-call","original":"./parse"}],"format":"cjs"},"../../node_modules/.store/jju-npm-1.4.0-670678eaa3/package/lib/document.js":{"bytes":14108,"imports":[{"path":"assert","kind":"require-call","external":true},{"path":"../../node_modules/.store/jju-npm-1.4.0-670678eaa3/package/lib/parse.js","kind":"require-call","original":"./parse"},{"path":"../../node_modules/.store/jju-npm-1.4.0-670678eaa3/package/lib/stringify.js","kind":"require-call","original":"./stringify"},{"path":"../../node_modules/.store/jju-npm-1.4.0-670678eaa3/package/lib/analyze.js","kind":"require-call","original":"./analyze"}],"format":"cjs"},"../../node_modules/.store/jju-npm-1.4.0-670678eaa3/package/lib/utils.js":{"bytes":1260,"imports":[{"path":"fs","kind":"require-call","external":true},{"path":"../../node_modules/.store/jju-npm-1.4.0-670678eaa3/package/index.js","kind":"require-call","original":"../"},{"path":"../../node_modules/.store/jju-npm-1.4.0-670678eaa3/package/index.js","kind":"require-call","original":"jju"},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"cjs"},"../../node_modules/.store/jju-npm-1.4.0-670678eaa3/package/index.js":{"bytes":768,"imports":[{"path":"../../node_modules/.store/jju-npm-1.4.0-670678eaa3/package/lib/parse.js","kind":"require-call","original":"./lib/parse"},{"path":"../../node_modules/.store/jju-npm-1.4.0-670678eaa3/package/lib/stringify.js","kind":"require-call","original":"./lib/stringify"},{"path":"../../node_modules/.store/jju-npm-1.4.0-670678eaa3/package/lib/parse.js","kind":"require-call","original":"./lib/parse"},{"path":"../../node_modules/.store/jju-npm-1.4.0-670678eaa3/package/lib/document.js","kind":"require-call","original":"./lib/document"},{"path":"../../node_modules/.store/jju-npm-1.4.0-670678eaa3/package/lib/analyze.js","kind":"require-call","original":"./lib/analyze"},{"path":"../../node_modules/.store/jju-npm-1.4.0-670678eaa3/package/lib/utils.js","kind":"require-call","original":"./lib/utils"}],"format":"cjs"},"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/workspaces/implementations/rush.js":{"bytes":2990,"imports":[{"path":"path","kind":"require-call","external":true},{"path":"../../node_modules/.store/jju-npm-1.4.0-670678eaa3/package/index.js","kind":"require-call","original":"jju"},{"path":"fs","kind":"require-call","external":true},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/workspaces/getWorkspacePackageInfo.js","kind":"require-call","original":"../getWorkspacePackageInfo"},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/logging.js","kind":"require-call","original":"../../logging"},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/workspaces/implementations/getWorkspaceManagerAndRoot.js","kind":"require-call","original":"./getWorkspaceManagerAndRoot"}],"format":"cjs"},"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/workspaces/implementations/npm.js":{"bytes":2112,"imports":[{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/workspaces/implementations/index.js","kind":"require-call","original":"."},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/workspaces/implementations/packageJsonWorkspaces.js","kind":"require-call","original":"./packageJsonWorkspaces"}],"format":"cjs"},"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/workspaces/implementations/lerna.js":{"bytes":2888,"imports":[{"path":"fs","kind":"require-call","external":true},{"path":"../../node_modules/.store/jju-npm-1.4.0-670678eaa3/package/index.js","kind":"require-call","original":"jju"},{"path":"path","kind":"require-call","external":true},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/getPackagePaths.js","kind":"require-call","original":"../../getPackagePaths"},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/workspaces/getWorkspacePackageInfo.js","kind":"require-call","original":"../getWorkspacePackageInfo"},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/logging.js","kind":"require-call","original":"../../logging"},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/workspaces/implementations/getWorkspaceManagerAndRoot.js","kind":"require-call","original":"./getWorkspaceManagerAndRoot"}],"format":"cjs"},"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/workspaces/implementations/getWorkspaceUtilities.js":{"bytes":891,"imports":[{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/workspaces/implementations/getWorkspaceManagerAndRoot.js","kind":"require-call","original":"./getWorkspaceManagerAndRoot"},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/workspaces/implementations/yarn.js","kind":"require-call","original":"./yarn"},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/workspaces/implementations/pnpm.js","kind":"require-call","original":"./pnpm"},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/workspaces/implementations/rush.js","kind":"require-call","original":"./rush"},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/workspaces/implementations/npm.js","kind":"require-call","original":"./npm"},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/workspaces/implementations/lerna.js","kind":"require-call","original":"./lerna"}],"format":"cjs"},"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/workspaces/implementations/index.js":{"bytes":654,"imports":[{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/workspaces/implementations/getWorkspaceManagerAndRoot.js","kind":"require-call","original":"./getWorkspaceManagerAndRoot"},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/workspaces/implementations/getWorkspaceUtilities.js","kind":"require-call","original":"./getWorkspaceUtilities"}],"format":"cjs"},"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/workspaces/getWorkspaceRoot.js":{"bytes":1514,"imports":[{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/workspaces/implementations/index.js","kind":"require-call","original":"./implementations"}],"format":"cjs"},"../ado-npm-auth-lib/lib/utils/get-organization-from-feed-url.js":{"bytes":3249,"imports":[],"format":"esm"},"../ado-npm-auth-lib/lib/utils/encoding.js":{"bytes":414,"imports":[],"format":"esm"},"../ado-npm-auth-lib/lib/utils/request.js":{"bytes":4767,"imports":[{"path":"https","kind":"import-statement","external":true},{"path":"fs","kind":"import-statement","external":true},{"path":"path","kind":"import-statement","external":true}],"format":"esm"},"../ado-npm-auth-lib/lib/ado/make-ado-request.js":{"bytes":1524,"imports":[{"path":"../ado-npm-auth-lib/lib/utils/encoding.js","kind":"import-statement","original":"../utils/encoding.js"},{"path":"../ado-npm-auth-lib/lib/utils/request.js","kind":"import-statement","original":"../utils/request.js"}],"format":"esm"},"../ado-npm-auth-lib/lib/fileProvider.js":{"bytes":2912,"imports":[{"path":"path","kind":"import-statement","external":true},{"path":"fs/promises","kind":"import-statement","external":true},{"path":"path","kind":"import-statement","external":true},{"path":"os","kind":"import-statement","external":true},{"path":"../../node_modules/.store/workspace-tools-npm-0.40.0-b9a5bf5ab3/package/lib/workspaces/getWorkspaceRoot.js","kind":"import-statement","original":"workspace-tools/lib/workspaces/getWorkspaceRoot.js"},{"path":"../ado-npm-auth-lib/lib/utils/get-organization-from-feed-url.js","kind":"import-statement","original":"./utils/get-organization-from-feed-url.js"},{"path":"../ado-npm-auth-lib/lib/ado/make-ado-request.js","kind":"import-statement","original":"./ado/make-ado-request.js"}],"format":"esm"},"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/dist/js-yaml.mjs":{"bytes":107743,"imports":[],"format":"esm"},"../ado-npm-auth-lib/lib/utils/get-feed-without-protocol.js":{"bytes":534,"imports":[],"format":"esm"},"../ado-npm-auth-lib/lib/utils/fileUtils.js":{"bytes":519,"imports":[{"path":"fs/promises","kind":"import-statement","external":true}],"format":"esm"},"../ado-npm-auth-lib/lib/yarnrc/yarnrcFileProvider.js":{"bytes":4008,"imports":[{"path":"../ado-npm-auth-lib/lib/fileProvider.js","kind":"import-statement","original":"../fileProvider.js"},{"path":"../../node_modules/.store/js-yaml-npm-4.1.1-86ec786790/package/dist/js-yaml.mjs","kind":"import-statement","original":"js-yaml"},{"path":"fs/promises","kind":"import-statement","external":true},{"path":"../ado-npm-auth-lib/lib/utils/encoding.js","kind":"import-statement","original":"../utils/encoding.js"},{"path":"../ado-npm-auth-lib/lib/utils/get-organization-from-feed-url.js","kind":"import-statement","original":"../utils/get-organization-from-feed-url.js"},{"path":"../ado-npm-auth-lib/lib/utils/get-feed-without-protocol.js","kind":"import-statement","original":"../utils/get-feed-without-protocol.js"},{"path":"../ado-npm-auth-lib/lib/utils/fileUtils.js","kind":"import-statement","original":"../utils/fileUtils.js"}],"format":"esm"},"../../node_modules/.store/walk-up-path-npm-4.0.0-d7e927f7ee/package/dist/commonjs/index.js":{"bytes":457,"imports":[{"path":"path","kind":"require-call","external":true}],"format":"cjs"},"../../node_modules/.store/ini-npm-5.0.0-d1ec8350f4/package/lib/ini.js":{"bytes":7123,"imports":[],"format":"cjs"},"../../node_modules/.store/abbrev-npm-3.0.1-a34d600e50/package/lib/index.js":{"bytes":1379,"imports":[],"format":"cjs"},"../../node_modules/.store/nopt-npm-8.1.0-5570ef63cd/package/lib/debug.js":{"bytes":181,"imports":[],"format":"cjs"},"../../node_modules/.store/nopt-npm-8.1.0-5570ef63cd/package/lib/type-defs.js":{"bytes":2030,"imports":[{"path":"url","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"stream","kind":"require-call","external":true},{"path":"os","kind":"require-call","external":true},{"path":"../../node_modules/.store/nopt-npm-8.1.0-5570ef63cd/package/lib/debug.js","kind":"require-call","original":"./debug"}],"format":"cjs"},"../../node_modules/.store/nopt-npm-8.1.0-5570ef63cd/package/lib/nopt-lib.js":{"bytes":14184,"imports":[{"path":"../../node_modules/.store/abbrev-npm-3.0.1-a34d600e50/package/lib/index.js","kind":"require-call","original":"abbrev"},{"path":"../../node_modules/.store/nopt-npm-8.1.0-5570ef63cd/package/lib/debug.js","kind":"require-call","original":"./debug"},{"path":"../../node_modules/.store/nopt-npm-8.1.0-5570ef63cd/package/lib/type-defs.js","kind":"require-call","original":"./type-defs"}],"format":"cjs"},"../../node_modules/.store/nopt-npm-8.1.0-5570ef63cd/package/lib/nopt.js":{"bytes":1127,"imports":[{"path":"../../node_modules/.store/nopt-npm-8.1.0-5570ef63cd/package/lib/nopt-lib.js","kind":"require-call","original":"./nopt-lib"},{"path":"../../node_modules/.store/nopt-npm-8.1.0-5570ef63cd/package/lib/type-defs.js","kind":"require-call","original":"./type-defs"}],"format":"cjs"},"../../node_modules/.store/proc-log-npm-5.0.0-405173f9b4/package/lib/index.js":{"bytes":3380,"imports":[],"format":"cjs"},"../../node_modules/.store/@npmcli-config-npm-10.4.2-028c4fd045/package/lib/umask.js":{"bytes":914,"imports":[],"format":"cjs"},"../../node_modules/.store/@npmcli-config-npm-10.4.2-028c4fd045/package/lib/type-defs.js":{"bytes":1388,"imports":[{"path":"../../node_modules/.store/nopt-npm-8.1.0-5570ef63cd/package/lib/nopt.js","kind":"require-call","original":"nopt"},{"path":"../../node_modules/.store/@npmcli-config-npm-10.4.2-028c4fd045/package/lib/umask.js","kind":"require-call","original":"./umask.js"},{"path":"semver/functions/valid","kind":"require-call","external":true}],"format":"cjs"},"../../node_modules/.store/@npmcli-config-npm-10.4.2-028c4fd045/package/lib/nerf-dart.js":{"bytes":455,"imports":[{"path":"url","kind":"require-call","external":true}],"format":"cjs"},"../../node_modules/.store/@npmcli-config-npm-10.4.2-028c4fd045/package/lib/env-replace.js":{"bytes":616,"imports":[],"format":"cjs"},"../../node_modules/.store/@npmcli-config-npm-10.4.2-028c4fd045/package/lib/parse-field.js":{"bytes":2229,"imports":[{"path":"../../node_modules/.store/@npmcli-config-npm-10.4.2-028c4fd045/package/lib/type-defs.js","kind":"require-call","original":"./type-defs.js"},{"path":"../../node_modules/.store/@npmcli-config-npm-10.4.2-028c4fd045/package/lib/env-replace.js","kind":"require-call","original":"./env-replace.js"},{"path":"path","kind":"require-call","external":true},{"path":"../../node_modules/.store/@npmcli-config-npm-10.4.2-028c4fd045/package/lib/umask.js","kind":"require-call","original":"./umask.js"}],"format":"cjs"},"../../node_modules/.store/@npmcli-config-npm-10.4.2-028c4fd045/package/lib/set-envs.js":{"bytes":3761,"imports":[],"format":"cjs"},"../../node_modules/.store/@npmcli-config-npm-10.4.2-028c4fd045/package/lib/errors.js":{"bytes":707,"imports":[],"format":"cjs"},"../../node_modules/.store/@npmcli-config-npm-10.4.2-028c4fd045/package/lib/type-description.js":{"bytes":574,"imports":[{"path":"../../node_modules/.store/@npmcli-config-npm-10.4.2-028c4fd045/package/lib/type-defs.js","kind":"require-call","original":"./type-defs.js"}],"format":"cjs"},"../../node_modules/.store/json-parse-even-better-errors-npm-5.0.0-50b52ec7fb/package/lib/index.js":{"bytes":4167,"imports":[],"format":"cjs"},"../../node_modules/.store/@npmcli-package-json-npm-7.0.2-7de85cff9d/package/lib/update-dependencies.js":{"bytes":2026,"imports":[],"format":"cjs"},"../../node_modules/.store/@npmcli-package-json-npm-7.0.2-7de85cff9d/package/lib/update-scripts.js":{"bytes":664,"imports":[],"format":"cjs"},"../../node_modules/.store/@npmcli-package-json-npm-7.0.2-7de85cff9d/package/lib/update-workspaces.js":{"bytes":626,"imports":[],"format":"cjs"},"../../node_modules/.store/proc-log-npm-6.0.0-455d6f01a6/package/lib/index.js":{"bytes":3380,"imports":[],"format":"cjs"},"../../node_modules/.store/lru-cache-npm-11.2.2-685f5506dc/package/dist/commonjs/index.js":{"bytes":56188,"imports":[],"format":"cjs"},"../../node_modules/.store/hosted-git-info-npm-9.0.2-2732400c79/package/lib/hosts.js":{"bytes":8991,"imports":[],"format":"cjs"},"../../node_modules/.store/hosted-git-info-npm-9.0.2-2732400c79/package/lib/parse-url.js":{"bytes":2745,"imports":[{"path":"url","kind":"require-call","external":true}],"format":"cjs"},"../../node_modules/.store/hosted-git-info-npm-9.0.2-2732400c79/package/lib/from-url.js":{"bytes":4219,"imports":[{"path":"../../node_modules/.store/hosted-git-info-npm-9.0.2-2732400c79/package/lib/parse-url.js","kind":"require-call","original":"./parse-url"}],"format":"cjs"},"../../node_modules/.store/hosted-git-info-npm-9.0.2-2732400c79/package/lib/index.js":{"bytes":5445,"imports":[{"path":"../../node_modules/.store/lru-cache-npm-11.2.2-685f5506dc/package/dist/commonjs/index.js","kind":"require-call","original":"lru-cache"},{"path":"../../node_modules/.store/hosted-git-info-npm-9.0.2-2732400c79/package/lib/hosts.js","kind":"require-call","original":"./hosts.js"},{"path":"../../node_modules/.store/hosted-git-info-npm-9.0.2-2732400c79/package/lib/from-url.js","kind":"require-call","original":"./from-url.js"},{"path":"../../node_modules/.store/hosted-git-info-npm-9.0.2-2732400c79/package/lib/parse-url.js","kind":"require-call","original":"./parse-url.js"}],"format":"cjs"},"../../node_modules/.store/@isaacs-balanced-match-npm-4.0.1-8965afafe6/package/dist/commonjs/index.js":{"bytes":1779,"imports":[],"format":"cjs"},"../../node_modules/.store/@isaacs-brace-expansion-npm-5.0.0-754d3cb3f5/package/dist/commonjs/index.js":{"bytes":6644,"imports":[{"path":"../../node_modules/.store/@isaacs-balanced-match-npm-4.0.1-8965afafe6/package/dist/commonjs/index.js","kind":"require-call","original":"@isaacs/balanced-match"}],"format":"cjs"},"../../node_modules/.store/minimatch-npm-10.1.1-453db4ee1a/package/dist/commonjs/assert-valid-pattern.js":{"bytes":492,"imports":[],"format":"cjs"},"../../node_modules/.store/minimatch-npm-10.1.1-453db4ee1a/package/dist/commonjs/brace-expressions.js":{"bytes":5763,"imports":[],"format":"cjs"},"../../node_modules/.store/minimatch-npm-10.1.1-453db4ee1a/package/dist/commonjs/unescape.js":{"bytes":1396,"imports":[],"format":"cjs"},"../../node_modules/.store/minimatch-npm-10.1.1-453db4ee1a/package/dist/commonjs/ast.js":{"bytes":22834,"imports":[{"path":"../../node_modules/.store/minimatch-npm-10.1.1-453db4ee1a/package/dist/commonjs/brace-expressions.js","kind":"require-call","original":"./brace-expressions.js"},{"path":"../../node_modules/.store/minimatch-npm-10.1.1-453db4ee1a/package/dist/commonjs/unescape.js","kind":"require-call","original":"./unescape.js"}],"format":"cjs"},"../../node_modules/.store/minimatch-npm-10.1.1-453db4ee1a/package/dist/commonjs/escape.js":{"bytes":1253,"imports":[],"format":"cjs"},"../../node_modules/.store/minimatch-npm-10.1.1-453db4ee1a/package/dist/commonjs/index.js":{"bytes":41175,"imports":[{"path":"../../node_modules/.store/@isaacs-brace-expansion-npm-5.0.0-754d3cb3f5/package/dist/commonjs/index.js","kind":"require-call","original":"@isaacs/brace-expansion"},{"path":"../../node_modules/.store/minimatch-npm-10.1.1-453db4ee1a/package/dist/commonjs/assert-valid-pattern.js","kind":"require-call","original":"./assert-valid-pattern.js"},{"path":"../../node_modules/.store/minimatch-npm-10.1.1-453db4ee1a/package/dist/commonjs/ast.js","kind":"require-call","original":"./ast.js"},{"path":"../../node_modules/.store/minimatch-npm-10.1.1-453db4ee1a/package/dist/commonjs/escape.js","kind":"require-call","original":"./escape.js"},{"path":"../../node_modules/.store/minimatch-npm-10.1.1-453db4ee1a/package/dist/commonjs/unescape.js","kind":"require-call","original":"./unescape.js"},{"path":"../../node_modules/.store/minimatch-npm-10.1.1-453db4ee1a/package/dist/commonjs/ast.js","kind":"require-call","original":"./ast.js"},{"path":"../../node_modules/.store/minimatch-npm-10.1.1-453db4ee1a/package/dist/commonjs/escape.js","kind":"require-call","original":"./escape.js"},{"path":"../../node_modules/.store/minimatch-npm-10.1.1-453db4ee1a/package/dist/commonjs/unescape.js","kind":"require-call","original":"./unescape.js"}],"format":"cjs"},"../../node_modules/.store/minipass-npm-7.1.2-3a5327d36d/package/dist/commonjs/index.js":{"bytes":33796,"imports":[{"path":"events","kind":"require-call","external":true},{"path":"stream","kind":"require-call","external":true},{"path":"string_decoder","kind":"require-call","external":true}],"format":"cjs"},"../../node_modules/.store/path-scurry-npm-2.0.1-7744619e5d/package/dist/commonjs/index.js":{"bytes":66265,"imports":[{"path":"../../node_modules/.store/lru-cache-npm-11.2.2-685f5506dc/package/dist/commonjs/index.js","kind":"require-call","original":"lru-cache"},{"path":"path","kind":"require-call","external":true},{"path":"url","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs/promises","kind":"require-call","external":true},{"path":"../../node_modules/.store/minipass-npm-7.1.2-3a5327d36d/package/dist/commonjs/index.js","kind":"require-call","original":"minipass"}],"format":"cjs"},"../../node_modules/.store/glob-npm-11.1.0-9420ed5efe/package/dist/commonjs/pattern.js":{"bytes":7300,"imports":[{"path":"../../node_modules/.store/minimatch-npm-10.1.1-453db4ee1a/package/dist/commonjs/index.js","kind":"require-call","original":"minimatch"}],"format":"cjs"},"../../node_modules/.store/glob-npm-11.1.0-9420ed5efe/package/dist/commonjs/ignore.js":{"bytes":4267,"imports":[{"path":"../../node_modules/.store/minimatch-npm-10.1.1-453db4ee1a/package/dist/commonjs/index.js","kind":"require-call","original":"minimatch"},{"path":"../../node_modules/.store/glob-npm-11.1.0-9420ed5efe/package/dist/commonjs/pattern.js","kind":"require-call","original":"./pattern.js"}],"format":"cjs"},"../../node_modules/.store/glob-npm-11.1.0-9420ed5efe/package/dist/commonjs/processor.js":{"bytes":10760,"imports":[{"path":"../../node_modules/.store/minimatch-npm-10.1.1-453db4ee1a/package/dist/commonjs/index.js","kind":"require-call","original":"minimatch"}],"format":"cjs"},"../../node_modules/.store/glob-npm-11.1.0-9420ed5efe/package/dist/commonjs/walker.js":{"bytes":12869,"imports":[{"path":"../../node_modules/.store/minipass-npm-7.1.2-3a5327d36d/package/dist/commonjs/index.js","kind":"require-call","original":"minipass"},{"path":"../../node_modules/.store/glob-npm-11.1.0-9420ed5efe/package/dist/commonjs/ignore.js","kind":"require-call","original":"./ignore.js"},{"path":"../../node_modules/.store/glob-npm-11.1.0-9420ed5efe/package/dist/commonjs/processor.js","kind":"require-call","original":"./processor.js"}],"format":"cjs"},"../../node_modules/.store/glob-npm-11.1.0-9420ed5efe/package/dist/commonjs/glob.js":{"bytes":8546,"imports":[{"path":"../../node_modules/.store/minimatch-npm-10.1.1-453db4ee1a/package/dist/commonjs/index.js","kind":"require-call","original":"minimatch"},{"path":"url","kind":"require-call","external":true},{"path":"../../node_modules/.store/path-scurry-npm-2.0.1-7744619e5d/package/dist/commonjs/index.js","kind":"require-call","original":"path-scurry"},{"path":"../../node_modules/.store/glob-npm-11.1.0-9420ed5efe/package/dist/commonjs/pattern.js","kind":"require-call","original":"./pattern.js"},{"path":"../../node_modules/.store/glob-npm-11.1.0-9420ed5efe/package/dist/commonjs/walker.js","kind":"require-call","original":"./walker.js"}],"format":"cjs"},"../../node_modules/.store/glob-npm-11.1.0-9420ed5efe/package/dist/commonjs/has-magic.js":{"bytes":1058,"imports":[{"path":"../../node_modules/.store/minimatch-npm-10.1.1-453db4ee1a/package/dist/commonjs/index.js","kind":"require-call","original":"minimatch"}],"format":"cjs"},"../../node_modules/.store/glob-npm-11.1.0-9420ed5efe/package/dist/commonjs/index.js":{"bytes":2876,"imports":[{"path":"../../node_modules/.store/minimatch-npm-10.1.1-453db4ee1a/package/dist/commonjs/index.js","kind":"require-call","original":"minimatch"},{"path":"../../node_modules/.store/glob-npm-11.1.0-9420ed5efe/package/dist/commonjs/glob.js","kind":"require-call","original":"./glob.js"},{"path":"../../node_modules/.store/glob-npm-11.1.0-9420ed5efe/package/dist/commonjs/has-magic.js","kind":"require-call","original":"./has-magic.js"},{"path":"../../node_modules/.store/minimatch-npm-10.1.1-453db4ee1a/package/dist/commonjs/index.js","kind":"require-call","original":"minimatch"},{"path":"../../node_modules/.store/glob-npm-11.1.0-9420ed5efe/package/dist/commonjs/glob.js","kind":"require-call","original":"./glob.js"},{"path":"../../node_modules/.store/glob-npm-11.1.0-9420ed5efe/package/dist/commonjs/has-magic.js","kind":"require-call","original":"./has-magic.js"},{"path":"../../node_modules/.store/glob-npm-11.1.0-9420ed5efe/package/dist/commonjs/ignore.js","kind":"require-call","original":"./ignore.js"}],"format":"cjs"},"../../node_modules/.store/spdx-license-ids-npm-3.0.22-2b47dea449/package/index.json":{"bytes":10754,"imports":[]},"../../node_modules/.store/spdx-license-ids-npm-3.0.22-2b47dea449/package/deprecated.json":{"bytes":512,"imports":[]},"../../node_modules/.store/spdx-exceptions-npm-2.5.0-718ed4b7d6/package/index.json":{"bytes":1731,"imports":[]},"../../node_modules/.store/spdx-expression-parse-npm-3.0.1-b718cbb35a/package/scan.js":{"bytes":2754,"imports":[{"path":"../../node_modules/.store/spdx-license-ids-npm-3.0.22-2b47dea449/package/index.json","kind":"require-call","original":"spdx-license-ids"},{"path":"../../node_modules/.store/spdx-license-ids-npm-3.0.22-2b47dea449/package/deprecated.json","kind":"require-call","original":"spdx-license-ids/deprecated"},{"path":"../../node_modules/.store/spdx-exceptions-npm-2.5.0-718ed4b7d6/package/index.json","kind":"require-call","original":"spdx-exceptions"}],"format":"cjs"},"../../node_modules/.store/spdx-expression-parse-npm-3.0.1-b718cbb35a/package/parse.js":{"bytes":2901,"imports":[],"format":"cjs"},"../../node_modules/.store/spdx-expression-parse-npm-3.0.1-b718cbb35a/package/index.js":{"bytes":143,"imports":[{"path":"../../node_modules/.store/spdx-expression-parse-npm-3.0.1-b718cbb35a/package/scan.js","kind":"require-call","original":"./scan"},{"path":"../../node_modules/.store/spdx-expression-parse-npm-3.0.1-b718cbb35a/package/parse.js","kind":"require-call","original":"./parse"}],"format":"cjs"},"../../node_modules/.store/spdx-correct-npm-3.2.0-ffae008484/package/index.js":{"bytes":10753,"imports":[{"path":"../../node_modules/.store/spdx-expression-parse-npm-3.0.1-b718cbb35a/package/index.js","kind":"require-call","original":"spdx-expression-parse"},{"path":"../../node_modules/.store/spdx-license-ids-npm-3.0.22-2b47dea449/package/index.json","kind":"require-call","original":"spdx-license-ids"}],"format":"cjs"},"../../node_modules/.store/validate-npm-package-license-npm-3.0.4-7af8adc7a8/package/index.js":{"bytes":1925,"imports":[{"path":"../../node_modules/.store/spdx-expression-parse-npm-3.0.1-b718cbb35a/package/index.js","kind":"require-call","original":"spdx-expression-parse"},{"path":"../../node_modules/.store/spdx-correct-npm-3.2.0-ffae008484/package/index.js","kind":"require-call","original":"spdx-correct"}],"format":"cjs"},"../../node_modules/.store/@npmcli-package-json-npm-7.0.2-7de85cff9d/package/lib/normalize-data.js":{"bytes":7752,"imports":[{"path":"url","kind":"require-call","external":true},{"path":"../../node_modules/.store/hosted-git-info-npm-9.0.2-2732400c79/package/lib/index.js","kind":"require-call","original":"hosted-git-info"},{"path":"../../node_modules/.store/validate-npm-package-license-npm-3.0.4-7af8adc7a8/package/index.js","kind":"require-call","original":"validate-npm-package-license"}],"format":"cjs"},"../../node_modules/.store/isexe-npm-3.1.1-9c0061eead/package/dist/cjs/posix.js":{"bytes":2072,"imports":[{"path":"fs","kind":"require-call","external":true},{"path":"fs/promises","kind":"require-call","external":true}],"format":"cjs"},"../../node_modules/.store/isexe-npm-3.1.1-9c0061eead/package/dist/cjs/win32.js":{"bytes":1877,"imports":[{"path":"fs","kind":"require-call","external":true},{"path":"fs/promises","kind":"require-call","external":true}],"format":"cjs"},"../../node_modules/.store/isexe-npm-3.1.1-9c0061eead/package/dist/cjs/options.js":{"bytes":112,"imports":[],"format":"cjs"},"../../node_modules/.store/isexe-npm-3.1.1-9c0061eead/package/dist/cjs/index.js":{"bytes":1951,"imports":[{"path":"../../node_modules/.store/isexe-npm-3.1.1-9c0061eead/package/dist/cjs/posix.js","kind":"require-call","original":"./posix.js"},{"path":"../../node_modules/.store/isexe-npm-3.1.1-9c0061eead/package/dist/cjs/win32.js","kind":"require-call","original":"./win32.js"},{"path":"../../node_modules/.store/isexe-npm-3.1.1-9c0061eead/package/dist/cjs/options.js","kind":"require-call","original":"./options.js"}],"format":"cjs"},"../../node_modules/.store/which-npm-5.0.0-15aa39eb60/package/lib/index.js":{"bytes":3129,"imports":[{"path":"../../node_modules/.store/isexe-npm-3.1.1-9c0061eead/package/dist/cjs/index.js","kind":"require-call","original":"isexe"},{"path":"path","kind":"require-call","external":true}],"format":"cjs"},"../../node_modules/.store/@npmcli-promise-spawn-npm-8.0.3-07e6a74037/package/lib/escape.js":{"bytes":1538,"imports":[],"format":"cjs"},"../../node_modules/.store/@npmcli-promise-spawn-npm-8.0.3-07e6a74037/package/lib/index.js":{"bytes":6192,"imports":[{"path":"child_process","kind":"require-call","external":true},{"path":"os","kind":"require-call","external":true},{"path":"../../node_modules/.store/which-npm-5.0.0-15aa39eb60/package/lib/index.js","kind":"require-call","original":"which"},{"path":"../../node_modules/.store/@npmcli-promise-spawn-npm-8.0.3-07e6a74037/package/lib/escape.js","kind":"require-call","original":"./escape.js"}],"format":"cjs"},"../../node_modules/.store/err-code-npm-2.0.3-082e0ff9a7/package/index.js":{"bytes":933,"imports":[],"format":"cjs"},"../../node_modules/.store/retry-npm-0.12.0-72ac7fb4cc/package/lib/retry_operation.js":{"bytes":3657,"imports":[],"format":"cjs"},"../../node_modules/.store/retry-npm-0.12.0-72ac7fb4cc/package/lib/retry.js":{"bytes":2298,"imports":[{"path":"../../node_modules/.store/retry-npm-0.12.0-72ac7fb4cc/package/lib/retry_operation.js","kind":"require-call","original":"./retry_operation"}],"format":"cjs"},"../../node_modules/.store/retry-npm-0.12.0-72ac7fb4cc/package/index.js":{"bytes":40,"imports":[{"path":"../../node_modules/.store/retry-npm-0.12.0-72ac7fb4cc/package/lib/retry.js","kind":"require-call","original":"./lib/retry"}],"format":"cjs"},"../../node_modules/.store/promise-retry-npm-2.0.1-871f0b01b7/package/index.js":{"bytes":1378,"imports":[{"path":"../../node_modules/.store/err-code-npm-2.0.3-082e0ff9a7/package/index.js","kind":"require-call","original":"err-code"},{"path":"../../node_modules/.store/retry-npm-0.12.0-72ac7fb4cc/package/index.js","kind":"require-call","original":"retry"}],"format":"cjs"},"../../node_modules/.store/@npmcli-git-npm-7.0.0-8a31ef8d3e/package/lib/errors.js":{"bytes":579,"imports":[],"format":"cjs"},"../../node_modules/.store/@npmcli-git-npm-7.0.0-8a31ef8d3e/package/lib/make-error.js":{"bytes":861,"imports":[{"path":"../../node_modules/.store/@npmcli-git-npm-7.0.0-8a31ef8d3e/package/lib/errors.js","kind":"require-call","original":"./errors.js"}],"format":"cjs"},"../../node_modules/.store/@npmcli-git-npm-7.0.0-8a31ef8d3e/package/lib/opts.js":{"bytes":1617,"imports":[{"path":"fs","kind":"require-call","external":true},{"path":"os","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"../../node_modules/.store/ini-npm-5.0.0-d1ec8350f4/package/lib/ini.js","kind":"require-call","original":"ini"}],"format":"cjs"},"../../node_modules/.store/@npmcli-git-npm-7.0.0-8a31ef8d3e/package/lib/which.js":{"bytes":339,"imports":[{"path":"../../node_modules/.store/which-npm-5.0.0-15aa39eb60/package/lib/index.js","kind":"require-call","original":"which"}],"format":"cjs"},"../../node_modules/.store/@npmcli-git-npm-7.0.0-8a31ef8d3e/package/lib/spawn.js":{"bytes":1303,"imports":[{"path":"../../node_modules/.store/@npmcli-promise-spawn-npm-8.0.3-07e6a74037/package/lib/index.js","kind":"require-call","original":"@npmcli/promise-spawn"},{"path":"../../node_modules/.store/promise-retry-npm-2.0.1-871f0b01b7/package/index.js","kind":"require-call","original":"promise-retry"},{"path":"../../node_modules/.store/proc-log-npm-5.0.0-405173f9b4/package/lib/index.js","kind":"require-call","original":"proc-log"},{"path":"../../node_modules/.store/@npmcli-git-npm-7.0.0-8a31ef8d3e/package/lib/make-error.js","kind":"require-call","original":"./make-error.js"},{"path":"../../node_modules/.store/@npmcli-git-npm-7.0.0-8a31ef8d3e/package/lib/opts.js","kind":"require-call","original":"./opts.js"},{"path":"../../node_modules/.store/@npmcli-git-npm-7.0.0-8a31ef8d3e/package/lib/which.js","kind":"require-call","original":"./which.js"}],"format":"cjs"},"../../node_modules/.store/@npmcli-git-npm-7.0.0-8a31ef8d3e/package/lib/lines-to-revs.js":{"bytes":4061,"imports":[{"path":"semver","kind":"require-call","external":true}],"format":"cjs"},"../../node_modules/.store/@npmcli-git-npm-7.0.0-8a31ef8d3e/package/lib/revs.js":{"bytes":521,"imports":[{"path":"../../node_modules/.store/@npmcli-git-npm-7.0.0-8a31ef8d3e/package/lib/spawn.js","kind":"require-call","original":"./spawn.js"},{"path":"../../node_modules/.store/lru-cache-npm-11.2.2-685f5506dc/package/dist/commonjs/index.js","kind":"require-call","original":"lru-cache"},{"path":"../../node_modules/.store/@npmcli-git-npm-7.0.0-8a31ef8d3e/package/lib/lines-to-revs.js","kind":"require-call","original":"./lines-to-revs.js"}],"format":"cjs"},"../../node_modules/.store/@npmcli-git-npm-7.0.0-8a31ef8d3e/package/lib/utils.js":{"bytes":109,"imports":[],"format":"cjs"},"../../node_modules/.store/validate-npm-package-name-npm-6.0.2-814ec4eccc/package/lib/index.js":{"bytes":2696,"imports":[{"path":"module","kind":"require-call","external":true}],"format":"cjs"},"../../node_modules/.store/npm-package-arg-npm-13.0.1-28c42a05e6/package/lib/npa.js":{"bytes":14331,"imports":[{"path":"url","kind":"require-call","external":true},{"path":"path/win32","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"os","kind":"require-call","external":true},{"path":"../../node_modules/.store/hosted-git-info-npm-9.0.2-2732400c79/package/lib/index.js","kind":"require-call","original":"hosted-git-info"},{"path":"semver","kind":"require-call","external":true},{"path":"../../node_modules/.store/validate-npm-package-name-npm-6.0.2-814ec4eccc/package/lib/index.js","kind":"require-call","original":"validate-npm-package-name"},{"path":"../../node_modules/.store/proc-log-npm-5.0.0-405173f9b4/package/lib/index.js","kind":"require-call","original":"proc-log"}],"format":"cjs"},"../../node_modules/.store/npm-install-checks-npm-8.0.0-5f270b6e8a/package/lib/current-env.js":{"bytes":1819,"imports":[{"path":"process","kind":"require-call","external":true},{"path":"os","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true}],"format":"cjs"},"../../node_modules/.store/npm-install-checks-npm-8.0.0-5f270b6e8a/package/lib/dev-engines.js":{"bytes":4101,"imports":[{"path":"semver/functions/satisfies","kind":"require-call","external":true},{"path":"semver/ranges/valid","kind":"require-call","external":true}],"format":"cjs"},"../../node_modules/.store/npm-install-checks-npm-8.0.0-5f270b6e8a/package/lib/index.js":{"bytes":2254,"imports":[{"path":"semver","kind":"require-call","external":true},{"path":"../../node_modules/.store/npm-install-checks-npm-8.0.0-5f270b6e8a/package/lib/current-env.js","kind":"require-call","original":"./current-env"},{"path":"../../node_modules/.store/npm-install-checks-npm-8.0.0-5f270b6e8a/package/lib/dev-engines.js","kind":"require-call","original":"./dev-engines"}],"format":"cjs"},"../../node_modules/.store/npm-normalize-package-bin-npm-5.0.0-315361378c/package/lib/index.js":{"bytes":1346,"imports":[{"path":"path","kind":"require-call","external":true}],"format":"cjs"},"../../node_modules/.store/npm-pick-manifest-npm-11.0.3-e489ad3286/package/lib/index.js":{"bytes":6979,"imports":[{"path":"../../node_modules/.store/npm-package-arg-npm-13.0.1-28c42a05e6/package/lib/npa.js","kind":"require-call","original":"npm-package-arg"},{"path":"semver","kind":"require-call","external":true},{"path":"../../node_modules/.store/npm-install-checks-npm-8.0.0-5f270b6e8a/package/lib/index.js","kind":"require-call","original":"npm-install-checks"},{"path":"../../node_modules/.store/npm-normalize-package-bin-npm-5.0.0-315361378c/package/lib/index.js","kind":"require-call","original":"npm-normalize-package-bin"}],"format":"cjs"},"../../node_modules/.store/@npmcli-git-npm-7.0.0-8a31ef8d3e/package/lib/clone.js":{"bytes":4937,"imports":[{"path":"url","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"../../node_modules/.store/@npmcli-git-npm-7.0.0-8a31ef8d3e/package/lib/revs.js","kind":"require-call","original":"./revs.js"},{"path":"../../node_modules/.store/@npmcli-git-npm-7.0.0-8a31ef8d3e/package/lib/spawn.js","kind":"require-call","original":"./spawn.js"},{"path":"../../node_modules/.store/@npmcli-git-npm-7.0.0-8a31ef8d3e/package/lib/utils.js","kind":"require-call","original":"./utils.js"},{"path":"../../node_modules/.store/npm-pick-manifest-npm-11.0.3-e489ad3286/package/lib/index.js","kind":"require-call","original":"npm-pick-manifest"},{"path":"fs/promises","kind":"require-call","external":true}],"format":"cjs"},"../../node_modules/.store/@npmcli-git-npm-7.0.0-8a31ef8d3e/package/lib/is.js":{"bytes":216,"imports":[{"path":"fs/promises","kind":"require-call","external":true}],"format":"cjs"},"../../node_modules/.store/@npmcli-git-npm-7.0.0-8a31ef8d3e/package/lib/find.js":{"bytes":316,"imports":[{"path":"../../node_modules/.store/@npmcli-git-npm-7.0.0-8a31ef8d3e/package/lib/is.js","kind":"require-call","original":"./is.js"},{"path":"path","kind":"require-call","external":true}],"format":"cjs"},"../../node_modules/.store/@npmcli-git-npm-7.0.0-8a31ef8d3e/package/lib/is-clean.js":{"bytes":222,"imports":[{"path":"../../node_modules/.store/@npmcli-git-npm-7.0.0-8a31ef8d3e/package/lib/spawn.js","kind":"require-call","original":"./spawn.js"}],"format":"cjs"},"../../node_modules/.store/@npmcli-git-npm-7.0.0-8a31ef8d3e/package/lib/index.js":{"bytes":242,"imports":[{"path":"../../node_modules/.store/@npmcli-git-npm-7.0.0-8a31ef8d3e/package/lib/clone.js","kind":"require-call","original":"./clone.js"},{"path":"../../node_modules/.store/@npmcli-git-npm-7.0.0-8a31ef8d3e/package/lib/revs.js","kind":"require-call","original":"./revs.js"},{"path":"../../node_modules/.store/@npmcli-git-npm-7.0.0-8a31ef8d3e/package/lib/spawn.js","kind":"require-call","original":"./spawn.js"},{"path":"../../node_modules/.store/@npmcli-git-npm-7.0.0-8a31ef8d3e/package/lib/is.js","kind":"require-call","original":"./is.js"},{"path":"../../node_modules/.store/@npmcli-git-npm-7.0.0-8a31ef8d3e/package/lib/find.js","kind":"require-call","original":"./find.js"},{"path":"../../node_modules/.store/@npmcli-git-npm-7.0.0-8a31ef8d3e/package/lib/is-clean.js","kind":"require-call","original":"./is-clean.js"},{"path":"../../node_modules/.store/@npmcli-git-npm-7.0.0-8a31ef8d3e/package/lib/errors.js","kind":"require-call","original":"./errors.js"}],"format":"cjs"},"../../node_modules/.store/@npmcli-package-json-npm-7.0.2-7de85cff9d/package/lib/normalize.js":{"bytes":20310,"imports":[{"path":"semver/functions/valid","kind":"require-call","external":true},{"path":"semver/functions/clean","kind":"require-call","external":true},{"path":"fs/promises","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"../../node_modules/.store/proc-log-npm-6.0.0-455d6f01a6/package/lib/index.js","kind":"require-call","original":"proc-log"},{"path":"module","kind":"require-call","external":true},{"path":"../../node_modules/.store/hosted-git-info-npm-9.0.2-2732400c79/package/lib/index.js","kind":"require-call","original":"hosted-git-info"},{"path":"../../node_modules/.store/glob-npm-11.1.0-9420ed5efe/package/dist/commonjs/index.js","kind":"require-call","original":"glob"},{"path":"../../node_modules/.store/@npmcli-package-json-npm-7.0.2-7de85cff9d/package/lib/normalize-data.js","kind":"require-call","original":"./normalize-data.js"},{"path":"../../node_modules/.store/@npmcli-git-npm-7.0.0-8a31ef8d3e/package/lib/index.js","kind":"require-call","original":"@npmcli/git"}],"format":"cjs"},"../../node_modules/.store/@npmcli-package-json-npm-7.0.2-7de85cff9d/package/lib/read-package.js":{"bytes":1048,"imports":[{"path":"fs/promises","kind":"require-call","external":true},{"path":"../../node_modules/.store/json-parse-even-better-errors-npm-5.0.0-50b52ec7fb/package/lib/index.js","kind":"require-call","original":"json-parse-even-better-errors"}],"format":"cjs"},"../../node_modules/.store/@npmcli-package-json-npm-7.0.2-7de85cff9d/package/lib/sort.js":{"bytes":3589,"imports":[],"format":"cjs"},"../../node_modules/.store/@npmcli-package-json-npm-7.0.2-7de85cff9d/package/lib/index.js":{"bytes":6904,"imports":[{"path":"fs/promises","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"../../node_modules/.store/json-parse-even-better-errors-npm-5.0.0-50b52ec7fb/package/lib/index.js","kind":"require-call","original":"json-parse-even-better-errors"},{"path":"../../node_modules/.store/@npmcli-package-json-npm-7.0.2-7de85cff9d/package/lib/update-dependencies.js","kind":"require-call","original":"./update-dependencies.js"},{"path":"../../node_modules/.store/@npmcli-package-json-npm-7.0.2-7de85cff9d/package/lib/update-scripts.js","kind":"require-call","original":"./update-scripts.js"},{"path":"../../node_modules/.store/@npmcli-package-json-npm-7.0.2-7de85cff9d/package/lib/update-workspaces.js","kind":"require-call","original":"./update-workspaces.js"},{"path":"../../node_modules/.store/@npmcli-package-json-npm-7.0.2-7de85cff9d/package/lib/normalize.js","kind":"require-call","original":"./normalize.js"},{"path":"../../node_modules/.store/@npmcli-package-json-npm-7.0.2-7de85cff9d/package/lib/read-package.js","kind":"require-call","original":"./read-package.js"},{"path":"../../node_modules/.store/@npmcli-package-json-npm-7.0.2-7de85cff9d/package/lib/sort.js","kind":"require-call","original":"./sort.js"}],"format":"cjs"},"../../node_modules/.store/@npmcli-name-from-folder-npm-4.0.0-c17fde9c6e/package/lib/index.js":{"bytes":225,"imports":[{"path":"path","kind":"require-call","external":true}],"format":"cjs"},"../../node_modules/.store/@npmcli-map-workspaces-npm-5.0.1-67ded7bcb9/package/lib/index.js":{"bytes":6571,"imports":[{"path":"path","kind":"require-call","external":true},{"path":"../../node_modules/.store/@npmcli-name-from-folder-npm-4.0.0-c17fde9c6e/package/lib/index.js","kind":"require-call","original":"@npmcli/name-from-folder"},{"path":"../../node_modules/.store/minimatch-npm-10.1.1-453db4ee1a/package/dist/commonjs/index.js","kind":"require-call","original":"minimatch"},{"path":"../../node_modules/.store/@npmcli-package-json-npm-7.0.2-7de85cff9d/package/lib/index.js","kind":"require-call","original":"@npmcli/package-json"},{"path":"../../node_modules/.store/glob-npm-11.1.0-9420ed5efe/package/dist/commonjs/index.js","kind":"require-call","original":"glob"}],"format":"cjs"},"../../node_modules/.store/@npmcli-config-npm-10.4.2-028c4fd045/package/lib/index.js":{"bytes":30542,"imports":[{"path":"../../node_modules/.store/walk-up-path-npm-4.0.0-d7e927f7ee/package/dist/commonjs/index.js","kind":"require-call","original":"walk-up-path"},{"path":"../../node_modules/.store/ini-npm-5.0.0-d1ec8350f4/package/lib/ini.js","kind":"require-call","original":"ini"},{"path":"../../node_modules/.store/nopt-npm-8.1.0-5570ef63cd/package/lib/nopt.js","kind":"require-call","original":"nopt"},{"path":"../../node_modules/.store/proc-log-npm-5.0.0-405173f9b4/package/lib/index.js","kind":"require-call","original":"proc-log"},{"path":"path","kind":"require-call","external":true},{"path":"os","kind":"require-call","external":true},{"path":"fs/promises","kind":"require-call","external":true},{"path":"../../node_modules/.store/@npmcli-config-npm-10.4.2-028c4fd045/package/lib/type-defs.js","kind":"require-call","original":"./type-defs.js"},{"path":"../../node_modules/.store/@npmcli-config-npm-10.4.2-028c4fd045/package/lib/nerf-dart.js","kind":"require-call","original":"./nerf-dart.js"},{"path":"../../node_modules/.store/@npmcli-config-npm-10.4.2-028c4fd045/package/lib/env-replace.js","kind":"require-call","original":"./env-replace.js"},{"path":"../../node_modules/.store/@npmcli-config-npm-10.4.2-028c4fd045/package/lib/parse-field.js","kind":"require-call","original":"./parse-field.js"},{"path":"../../node_modules/.store/@npmcli-config-npm-10.4.2-028c4fd045/package/lib/set-envs.js","kind":"require-call","original":"./set-envs.js"},{"path":"../../node_modules/.store/@npmcli-config-npm-10.4.2-028c4fd045/package/lib/errors.js","kind":"require-call","original":"./errors.js"},{"path":"../../node_modules/.store/@npmcli-config-npm-10.4.2-028c4fd045/package/lib/type-description.js","kind":"require-call","original":"./type-description.js"},{"path":"../../node_modules/.store/@npmcli-package-json-npm-7.0.2-7de85cff9d/package/lib/index.js","kind":"require-call","original":"@npmcli/package-json"},{"path":"../../node_modules/.store/@npmcli-map-workspaces-npm-5.0.1-67ded7bcb9/package/lib/index.js","kind":"require-call","original":"@npmcli/map-workspaces"},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"cjs"},"../ado-npm-auth-lib/lib/npmrc/npmrcFileProvider.js":{"bytes":6975,"imports":[{"path":"../../node_modules/.store/@npmcli-config-npm-10.4.2-028c4fd045/package/lib/index.js","kind":"import-statement","original":"@npmcli/config"},{"path":"../ado-npm-auth-lib/lib/fileProvider.js","kind":"import-statement","original":"../fileProvider.js"},{"path":"fs/promises","kind":"import-statement","external":true},{"path":"os","kind":"import-statement","external":true},{"path":"../ado-npm-auth-lib/lib/utils/get-organization-from-feed-url.js","kind":"import-statement","original":"../utils/get-organization-from-feed-url.js"},{"path":"../ado-npm-auth-lib/lib/utils/get-feed-without-protocol.js","kind":"import-statement","original":"../utils/get-feed-without-protocol.js"},{"path":"../ado-npm-auth-lib/lib/utils/encoding.js","kind":"import-statement","original":"../utils/encoding.js"},{"path":"path","kind":"import-statement","external":true},{"path":"../ado-npm-auth-lib/lib/utils/fileUtils.js","kind":"import-statement","original":"../utils/fileUtils.js"}],"format":"esm"},"../ado-npm-auth-lib/lib/utils/exec.js":{"bytes":2332,"imports":[{"path":"child_process","kind":"import-statement","external":true},{"path":"util","kind":"import-statement","external":true}],"format":"esm"},"../ado-npm-auth-lib/lib/utils/is-wsl.js":{"bytes":306,"imports":[{"path":"os","kind":"import-statement","external":true}],"format":"esm"},"../ado-npm-auth-lib/lib/azureauth/is-supported-platform-and-architecture.js":{"bytes":699,"imports":[{"path":"os","kind":"import-statement","external":true},{"path":"../ado-npm-auth-lib/lib/utils/is-wsl.js","kind":"import-statement","original":"../utils/is-wsl.js"}],"format":"esm"},"../ado-npm-auth-lib/lib/azureauth/azureauth-command.js":{"bytes":792,"imports":[{"path":"../ado-npm-auth-lib/lib/utils/is-wsl.js","kind":"import-statement","original":"../utils/is-wsl.js"}],"format":"esm"},"../ado-npm-auth-lib/lib/azureauth/is-azureauth-installed.js":{"bytes":910,"imports":[{"path":"../ado-npm-auth-lib/lib/utils/exec.js","kind":"import-statement","original":"../utils/exec.js"},{"path":"../ado-npm-auth-lib/lib/azureauth/azureauth-command.js","kind":"import-statement","original":"./azureauth-command.js"}],"format":"esm"},"../ado-npm-auth-lib/lib/azureauth/ado.js":{"bytes":3202,"imports":[{"path":"os","kind":"import-statement","external":true},{"path":"child_process","kind":"import-statement","external":true},{"path":"../ado-npm-auth-lib/lib/utils/exec.js","kind":"import-statement","original":"../utils/exec.js"},{"path":"../ado-npm-auth-lib/lib/azureauth/is-supported-platform-and-architecture.js","kind":"import-statement","original":"./is-supported-platform-and-architecture.js"},{"path":"../ado-npm-auth-lib/lib/azureauth/azureauth-command.js","kind":"import-statement","original":"./azureauth-command.js"},{"path":"../ado-npm-auth-lib/lib/utils/is-wsl.js","kind":"import-statement","original":"../utils/is-wsl.js"},{"path":"../ado-npm-auth-lib/lib/azureauth/is-azureauth-installed.js","kind":"import-statement","original":"./is-azureauth-installed.js"}],"format":"esm"},"../ado-npm-auth-lib/lib/npmrc/nugetCredentialProvider.js":{"bytes":3023,"imports":[{"path":"os","kind":"import-statement","external":true},{"path":"fs","kind":"import-statement","external":true},{"path":"path","kind":"import-statement","external":true},{"path":"../ado-npm-auth-lib/lib/utils/request.js","kind":"import-statement","original":"../utils/request.js"},{"path":"../ado-npm-auth-lib/lib/utils/exec.js","kind":"import-statement","original":"../utils/exec.js"}],"format":"esm"},"../ado-npm-auth-lib/lib/npmrc/generate-npmrc-pat.js":{"bytes":2177,"imports":[{"path":"os","kind":"import-statement","external":true},{"path":"../ado-npm-auth-lib/lib/azureauth/ado.js","kind":"import-statement","original":"../azureauth/ado.js"},{"path":"../ado-npm-auth-lib/lib/utils/encoding.js","kind":"import-statement","original":"../utils/encoding.js"},{"path":"../ado-npm-auth-lib/lib/npmrc/nugetCredentialProvider.js","kind":"import-statement","original":"./nugetCredentialProvider.js"}],"format":"esm"},"../ado-npm-auth-lib/lib/utils/partition.js":{"bytes":384,"imports":[],"format":"esm"},"../ado-npm-auth-lib/lib/telemetry/index.js":{"bytes":782,"imports":[{"path":"os","kind":"import-statement","external":true},{"path":"../ado-npm-auth-lib/lib/utils/is-wsl.js","kind":"import-statement","original":"../utils/is-wsl.js"}],"format":"esm"},"../ado-npm-auth-lib/lib/utils/is-codespaces.js":{"bytes":349,"imports":[],"format":"esm"},"../../node_modules/.store/cliui-npm-8.0.1-3b029092cf/package/build/lib/index.js":{"bytes":9667,"imports":[],"format":"esm"},"../../node_modules/.store/cliui-npm-8.0.1-3b029092cf/package/build/lib/string-utils.js":{"bytes":1011,"imports":[],"format":"esm"},"../../node_modules/.store/cliui-npm-8.0.1-3b029092cf/package/index.mjs":{"bytes":309,"imports":[{"path":"../../node_modules/.store/cliui-npm-8.0.1-3b029092cf/package/build/lib/index.js","kind":"import-statement","original":"./build/lib/index.js"},{"path":"../../node_modules/.store/cliui-npm-8.0.1-3b029092cf/package/build/lib/string-utils.js","kind":"import-statement","original":"./build/lib/string-utils.js"}],"format":"esm"},"../../node_modules/.store/escalade-npm-3.2.0-19b50dd48f/package/sync/index.mjs":{"bytes":404,"imports":[{"path":"path","kind":"import-statement","external":true},{"path":"fs","kind":"import-statement","external":true}],"format":"esm"},"../../node_modules/.store/yargs-parser-npm-21.1.1-8fdc003314/package/build/lib/string-utils.js":{"bytes":2084,"imports":[],"format":"esm"},"../../node_modules/.store/yargs-parser-npm-21.1.1-8fdc003314/package/build/lib/tokenize-arg-string.js":{"bytes":1092,"imports":[],"format":"esm"},"../../node_modules/.store/yargs-parser-npm-21.1.1-8fdc003314/package/build/lib/yargs-parser-types.js":{"bytes":425,"imports":[],"format":"esm"},"../../node_modules/.store/yargs-parser-npm-21.1.1-8fdc003314/package/build/lib/yargs-parser.js":{"bytes":46827,"imports":[{"path":"../../node_modules/.store/yargs-parser-npm-21.1.1-8fdc003314/package/build/lib/tokenize-arg-string.js","kind":"import-statement","original":"./tokenize-arg-string.js"},{"path":"../../node_modules/.store/yargs-parser-npm-21.1.1-8fdc003314/package/build/lib/yargs-parser-types.js","kind":"import-statement","original":"./yargs-parser-types.js"},{"path":"../../node_modules/.store/yargs-parser-npm-21.1.1-8fdc003314/package/build/lib/string-utils.js","kind":"import-statement","original":"./string-utils.js"}],"format":"esm"},"../../node_modules/.store/yargs-parser-npm-21.1.1-8fdc003314/package/build/lib/index.js":{"bytes":2508,"imports":[{"path":"util","kind":"import-statement","external":true},{"path":"path","kind":"import-statement","external":true},{"path":"../../node_modules/.store/yargs-parser-npm-21.1.1-8fdc003314/package/build/lib/string-utils.js","kind":"import-statement","original":"./string-utils.js"},{"path":"../../node_modules/.store/yargs-parser-npm-21.1.1-8fdc003314/package/build/lib/yargs-parser.js","kind":"import-statement","original":"./yargs-parser.js"},{"path":"fs","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/utils/process-argv.js":{"bytes":436,"imports":[],"format":"esm"},"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/yerror.js":{"bytes":234,"imports":[],"format":"esm"},"../../node_modules/.store/y18n-npm-5.0.8-5f3a0a7e62/package/build/lib/platform-shims/node.js":{"bytes":377,"imports":[{"path":"fs","kind":"import-statement","external":true},{"path":"util","kind":"import-statement","external":true},{"path":"path","kind":"import-statement","external":true}],"format":"esm"},"../../node_modules/.store/y18n-npm-5.0.8-5f3a0a7e62/package/build/lib/index.js":{"bytes":6268,"imports":[],"format":"esm"},"../../node_modules/.store/y18n-npm-5.0.8-5f3a0a7e62/package/index.mjs":{"bytes":183,"imports":[{"path":"../../node_modules/.store/y18n-npm-5.0.8-5f3a0a7e62/package/build/lib/platform-shims/node.js","kind":"import-statement","original":"./build/lib/platform-shims/node.js"},{"path":"../../node_modules/.store/y18n-npm-5.0.8-5f3a0a7e62/package/build/lib/index.js","kind":"import-statement","original":"./build/lib/index.js"}],"format":"esm"},"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/lib/platform-shims/esm.mjs":{"bytes":1876,"imports":[{"path":"assert","kind":"import-statement","external":true},{"path":"../../node_modules/.store/cliui-npm-8.0.1-3b029092cf/package/index.mjs","kind":"import-statement","original":"cliui"},{"path":"../../node_modules/.store/escalade-npm-3.2.0-19b50dd48f/package/sync/index.mjs","kind":"import-statement","original":"escalade/sync"},{"path":"util","kind":"import-statement","external":true},{"path":"fs","kind":"import-statement","external":true},{"path":"url","kind":"import-statement","external":true},{"path":"../../node_modules/.store/yargs-parser-npm-21.1.1-8fdc003314/package/build/lib/index.js","kind":"import-statement","original":"yargs-parser"},{"path":"path","kind":"import-statement","external":true},{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/utils/process-argv.js","kind":"import-statement","original":"../../build/lib/utils/process-argv.js"},{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/yerror.js","kind":"import-statement","original":"../../build/lib/yerror.js"},{"path":"../../node_modules/.store/y18n-npm-5.0.8-5f3a0a7e62/package/index.mjs","kind":"import-statement","original":"y18n"}],"format":"esm"},"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/typings/common-types.js":{"bytes":308,"imports":[],"format":"esm"},"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/utils/is-promise.js":{"bytes":155,"imports":[],"format":"esm"},"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/parse-command.js":{"bytes":1060,"imports":[],"format":"esm"},"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/argsert.js":{"bytes":2477,"imports":[{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/yerror.js","kind":"import-statement","original":"./yerror.js"},{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/parse-command.js","kind":"import-statement","original":"./parse-command.js"}],"format":"esm"},"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/middleware.js":{"bytes":3221,"imports":[{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/argsert.js","kind":"import-statement","original":"./argsert.js"},{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/utils/is-promise.js","kind":"import-statement","original":"./utils/is-promise.js"}],"format":"esm"},"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/utils/maybe-async-result.js":{"bytes":496,"imports":[{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/utils/is-promise.js","kind":"import-statement","original":"./is-promise.js"}],"format":"esm"},"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/utils/which-module.js":{"bytes":321,"imports":[{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/command.js":{"bytes":19368,"imports":[{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/typings/common-types.js","kind":"import-statement","original":"./typings/common-types.js"},{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/utils/is-promise.js","kind":"import-statement","original":"./utils/is-promise.js"},{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/middleware.js","kind":"import-statement","original":"./middleware.js"},{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/parse-command.js","kind":"import-statement","original":"./parse-command.js"},{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/yargs-factory.js","kind":"import-statement","original":"./yargs-factory.js"},{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/utils/maybe-async-result.js","kind":"import-statement","original":"./utils/maybe-async-result.js"},{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/utils/which-module.js","kind":"import-statement","original":"./utils/which-module.js"}],"format":"esm"},"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/utils/obj-filter.js":{"bytes":299,"imports":[{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/typings/common-types.js","kind":"import-statement","original":"../typings/common-types.js"}],"format":"esm"},"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/utils/set-blocking.js":{"bytes":386,"imports":[],"format":"esm"},"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/usage.js":{"bytes":21402,"imports":[{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/utils/obj-filter.js","kind":"import-statement","original":"./utils/obj-filter.js"},{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/yerror.js","kind":"import-statement","original":"./yerror.js"},{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/utils/set-blocking.js","kind":"import-statement","original":"./utils/set-blocking.js"}],"format":"esm"},"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/completion-templates.js":{"bytes":1452,"imports":[],"format":"esm"},"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/completion.js":{"bytes":10495,"imports":[{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/command.js","kind":"import-statement","original":"./command.js"},{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/typings/common-types.js","kind":"import-statement","original":"./typings/common-types.js"},{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/completion-templates.js","kind":"import-statement","original":"./completion-templates.js"},{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/utils/is-promise.js","kind":"import-statement","original":"./utils/is-promise.js"},{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/parse-command.js","kind":"import-statement","original":"./parse-command.js"}],"format":"esm"},"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/utils/levenshtein.js":{"bytes":1031,"imports":[],"format":"esm"},"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/validation.js":{"bytes":12653,"imports":[{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/argsert.js","kind":"import-statement","original":"./argsert.js"},{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/typings/common-types.js","kind":"import-statement","original":"./typings/common-types.js"},{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/utils/levenshtein.js","kind":"import-statement","original":"./utils/levenshtein.js"},{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/utils/obj-filter.js","kind":"import-statement","original":"./utils/obj-filter.js"}],"format":"esm"},"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/utils/apply-extends.js":{"bytes":2049,"imports":[{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/yerror.js","kind":"import-statement","original":"../yerror.js"},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/yargs-factory.js":{"bytes":77635,"imports":[{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/command.js","kind":"import-statement","original":"./command.js"},{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/typings/common-types.js","kind":"import-statement","original":"./typings/common-types.js"},{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/yerror.js","kind":"import-statement","original":"./yerror.js"},{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/usage.js","kind":"import-statement","original":"./usage.js"},{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/argsert.js","kind":"import-statement","original":"./argsert.js"},{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/completion.js","kind":"import-statement","original":"./completion.js"},{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/validation.js","kind":"import-statement","original":"./validation.js"},{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/utils/obj-filter.js","kind":"import-statement","original":"./utils/obj-filter.js"},{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/utils/apply-extends.js","kind":"import-statement","original":"./utils/apply-extends.js"},{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/middleware.js","kind":"import-statement","original":"./middleware.js"},{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/utils/is-promise.js","kind":"import-statement","original":"./utils/is-promise.js"},{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/utils/maybe-async-result.js","kind":"import-statement","original":"./utils/maybe-async-result.js"},{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/utils/set-blocking.js","kind":"import-statement","original":"./utils/set-blocking.js"}],"format":"esm"},"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/index.mjs":{"bytes":231,"imports":[{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/lib/platform-shims/esm.mjs","kind":"import-statement","original":"./lib/platform-shims/esm.mjs"},{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/yargs-factory.js","kind":"import-statement","original":"./build/lib/yargs-factory.js"}],"format":"esm"},"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/helpers/helpers.mjs":{"bytes":384,"imports":[{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/utils/apply-extends.js","kind":"import-statement","original":"../build/lib/utils/apply-extends.js"},{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/build/lib/utils/process-argv.js","kind":"import-statement","original":"../build/lib/utils/process-argv.js"},{"path":"../../node_modules/.store/yargs-parser-npm-21.1.1-8fdc003314/package/build/lib/index.js","kind":"import-statement","original":"yargs-parser"},{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/lib/platform-shims/esm.mjs","kind":"import-statement","original":"../lib/platform-shims/esm.mjs"}],"format":"esm"},"../ado-npm-auth-lib/lib/args.js":{"bytes":1174,"imports":[{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/index.mjs","kind":"import-statement","original":"yargs"},{"path":"../../node_modules/.store/yargs-npm-17.7.2-80b62638e1/package/helpers/helpers.mjs","kind":"import-statement","original":"yargs/helpers"}],"format":"esm"},"../ado-npm-auth-lib/lib/cli.js":{"bytes":5150,"imports":[{"path":"os","kind":"import-statement","external":true},{"path":"process","kind":"import-statement","external":true},{"path":"../ado-npm-auth-lib/lib/azureauth/is-supported-platform-and-architecture.js","kind":"import-statement","original":"./azureauth/is-supported-platform-and-architecture.js"},{"path":"../ado-npm-auth-lib/lib/utils/is-codespaces.js","kind":"import-statement","original":"./utils/is-codespaces.js"},{"path":"../ado-npm-auth-lib/lib/telemetry/index.js","kind":"import-statement","original":"./telemetry/index.js"},{"path":"../ado-npm-auth-lib/lib/args.js","kind":"import-statement","original":"./args.js"},{"path":"../ado-npm-auth-lib/lib/npmrc/npmrcFileProvider.js","kind":"import-statement","original":"./npmrc/npmrcFileProvider.js"},{"path":"../ado-npm-auth-lib/lib/fileProvider.js","kind":"import-statement","original":"./fileProvider.js"},{"path":"../ado-npm-auth-lib/lib/npmrc/generate-npmrc-pat.js","kind":"import-statement","original":"./npmrc/generate-npmrc-pat.js"},{"path":"../ado-npm-auth-lib/lib/utils/partition.js","kind":"import-statement","original":"./utils/partition.js"},{"path":"../ado-npm-auth-lib/lib/yarnrc/yarnrcFileProvider.js","kind":"import-statement","original":"./yarnrc/yarnrcFileProvider.js"}],"format":"esm"},"../ado-npm-auth-lib/lib/index.js":{"bytes":535,"imports":[{"path":"../ado-npm-auth-lib/lib/yarnrc/yarnrcFileProvider.js","kind":"import-statement","original":"./yarnrc/yarnrcFileProvider.js"},{"path":"../ado-npm-auth-lib/lib/npmrc/npmrcFileProvider.js","kind":"import-statement","original":"./npmrc/npmrcFileProvider.js"},{"path":"../ado-npm-auth-lib/lib/fileProvider.js","kind":"import-statement","original":"./fileProvider.js"},{"path":"../ado-npm-auth-lib/lib/npmrc/generate-npmrc-pat.js","kind":"import-statement","original":"./npmrc/generate-npmrc-pat.js"},{"path":"../ado-npm-auth-lib/lib/utils/get-organization-from-feed-url.js","kind":"import-statement","original":"./utils/get-organization-from-feed-url.js"},{"path":"../ado-npm-auth-lib/lib/utils/partition.js","kind":"import-statement","original":"./utils/partition.js"},{"path":"../ado-npm-auth-lib/lib/telemetry/index.js","kind":"import-statement","original":"./telemetry/index.js"},{"path":"../ado-npm-auth-lib/lib/cli.js","kind":"import-statement","original":"./cli.js"}],"format":"esm"},"src/utils.ts":{"bytes":1176,"imports":[],"format":"esm"},"src/configuration.ts":{"bytes":962,"imports":[{"path":"@yarnpkg/core","kind":"import-statement","external":true},{"path":"src/utils.ts","kind":"import-statement","original":"./utils.ts"}],"format":"esm"},"src/tokenCache.ts":{"bytes":6184,"imports":[{"path":"@yarnpkg/core","kind":"import-statement","external":true},{"path":"../ado-npm-auth-lib/lib/index.js","kind":"import-statement","original":"@microsoft/ado-npm-auth-lib"},{"path":"src/configuration.ts","kind":"import-statement","original":"./configuration.ts"},{"path":"src/utils.ts","kind":"import-statement","original":"./utils.ts"},{"path":"child_process","kind":"import-statement","external":true},{"path":"os","kind":"import-statement","external":true}],"format":"esm"},"src/getToken.ts":{"bytes":654,"imports":[{"path":"@yarnpkg/core","kind":"import-statement","external":true},{"path":"src/tokenCache.ts","kind":"import-statement","original":"./tokenCache.ts"}],"format":"esm"},"src/plugin.ts":{"bytes":1116,"imports":[{"path":"@yarnpkg/core","kind":"import-statement","external":true},{"path":"src/getToken.ts","kind":"import-statement","original":"./getToken.ts"},{"path":"src/configuration.ts","kind":"import-statement","original":"./configuration.ts"}],"format":"esm"}},"outputs":{"dist/yarn-plugin-ado-auth.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":44820},"dist/yarn-plugin-ado-auth.cjs":{"imports":[{"path":"@yarnpkg/core","kind":"require-call","external":true},{"path":"https","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"os","kind":"require-call","external":true},{"path":"os","kind":"require-call","external":true},{"path":"child_process","kind":"require-call","external":true},{"path":"child_process","kind":"require-call","external":true},{"path":"util","kind":"require-call","external":true},{"path":"os","kind":"require-call","external":true},{"path":"os","kind":"require-call","external":true},{"path":"os","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"@yarnpkg/core","kind":"require-call","external":true},{"path":"child_process","kind":"require-call","external":true},{"path":"os","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/plugin.ts","inputs":{"src/plugin.ts":{"bytesInOutput":697},"src/tokenCache.ts":{"bytesInOutput":5313},"../ado-npm-auth-lib/lib/utils/get-organization-from-feed-url.js":{"bytesInOutput":1543},"../ado-npm-auth-lib/lib/utils/encoding.js":{"bytesInOutput":89},"../ado-npm-auth-lib/lib/utils/request.js":{"bytesInOutput":1586},"../ado-npm-auth-lib/lib/npmrc/generate-npmrc-pat.js":{"bytesInOutput":1164},"../ado-npm-auth-lib/lib/azureauth/ado.js":{"bytesInOutput":2508},"../ado-npm-auth-lib/lib/utils/exec.js":{"bytesInOutput":1999},"../ado-npm-auth-lib/lib/azureauth/is-supported-platform-and-architecture.js":{"bytesInOutput":406},"../ado-npm-auth-lib/lib/utils/is-wsl.js":{"bytesInOutput":185},"../ado-npm-auth-lib/lib/azureauth/azureauth-command.js":{"bytesInOutput":463},"../ado-npm-auth-lib/lib/azureauth/is-azureauth-installed.js":{"bytesInOutput":448},"../ado-npm-auth-lib/lib/npmrc/nugetCredentialProvider.js":{"bytesInOutput":3119},"../ado-npm-auth-lib/lib/index.js":{"bytesInOutput":0},"src/configuration.ts":{"bytesInOutput":741},"src/utils.ts":{"bytesInOutput":451},"src/getToken.ts":{"bytesInOutput":241}},"bytes":24037}}}
|
package/lib/tokenCache.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tokenCache.d.ts","sourceRoot":"","sources":["../src/tokenCache.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,aAAa,EAClB,KAAK,KAAK,EAGX,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"tokenCache.d.ts","sourceRoot":"","sources":["../src/tokenCache.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,aAAa,EAClB,KAAK,KAAK,EAGX,MAAM,eAAe,CAAC;AAKvB,OAAO,EAAE,iBAAiB,EAAE,MAAM,oBAAoB,CAAC;AAKvD;;;GAGG;AACH,qBAAa,UAAU;IACrB,OAAO,CAAC,aAAa,CAAgB;IACrC,OAAO,CAAC,MAAM,CAAS;IACvB,OAAO,CAAC,aAAa,CAAC,CAAS;IAC/B,OAAO,CAAC,KAAK,CAAgD;gBAG3D,aAAa,EAAE,aAAa,EAC5B,UAAU,GAAE,OAAO,iBAAqC;IAQ1D;;;;OAIG;IACH,QAAQ,CACN,QAAQ,EAAE,MAAM,EAChB,KAAK,CAAC,EAAE,KAAK,GACZ,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,GAAG,SAAS;IAOvC;;;;;;;OAOG;YACW,UAAU;IAkDxB;;;;OAIG;IACH,OAAO,CAAC,oBAAoB;IAY5B;;;OAGG;IACH,OAAO,CAAC,qBAAqB;IAW7B;;;OAGG;IACH,OAAO,CAAC,wBAAwB;CAuBjC"}
|
package/lib/tokenCache.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { StreamReport, formatUtils, } from "@yarnpkg/core";
|
|
2
|
-
import { getOrganizationFromFeedUrl, generateNpmrcPat } from "ado-npm-auth";
|
|
2
|
+
import { getOrganizationFromFeedUrl, generateNpmrcPat, } from "@microsoft/ado-npm-auth-lib";
|
|
3
3
|
import { loadConfiguration } from "./configuration.js";
|
|
4
4
|
import { getConfigMap, getConfigString } from "./utils.js";
|
|
5
5
|
import { spawnSync } from "node:child_process";
|
package/lib/tokenCache.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tokenCache.js","sourceRoot":"","sources":["../src/tokenCache.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,YAAY,EACZ,WAAW,GACZ,MAAM,eAAe,CAAC;AACvB,OAAO,
|
|
1
|
+
{"version":3,"file":"tokenCache.js","sourceRoot":"","sources":["../src/tokenCache.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/yarn-plugin-ado-auth",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Yarn plugin to enable Azure DevOps authentication for private npm registries.",
|
|
5
5
|
"repository": "https://github.com/microsoft/ado-npm-auth",
|
|
6
6
|
"license": "MIT",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"eslint": "eslint ."
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"ado-npm-auth": "^0.9.
|
|
24
|
+
"@microsoft/ado-npm-auth-lib": "^0.9.1"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@microsoft/eslint-plugin-sdl": "^1.1.0",
|