@visulima/package 1.5.3 → 1.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +21 -0
- package/dist/chunk-44SW4DFI.js +12 -0
- package/dist/chunk-44SW4DFI.js.map +1 -0
- package/dist/{chunk-45ZLUVBF.cjs → chunk-5YG33J5B.cjs} +3 -3
- package/dist/{chunk-OQ2PTROP.js → chunk-CMEGXNWH.js} +1 -1
- package/dist/{chunk-OQ2PTROP.js.map → chunk-CMEGXNWH.js.map} +1 -1
- package/dist/chunk-DNYCFU7L.cjs +9 -0
- package/dist/chunk-DNYCFU7L.cjs.map +1 -0
- package/dist/{chunk-QYGSOB5F.js → chunk-GMIFPTPB.js} +2 -2
- package/dist/{chunk-BBGTIP2U.js → chunk-I3QTPGJY.js} +2 -2
- package/dist/chunk-KSXRMTAQ.cjs +19 -0
- package/dist/chunk-KSXRMTAQ.cjs.map +1 -0
- package/dist/{chunk-4K7XWYTT.cjs → chunk-OVKFHJQE.cjs} +1 -1
- package/dist/{chunk-4K7XWYTT.cjs.map → chunk-OVKFHJQE.cjs.map} +1 -1
- package/dist/{chunk-DCD4MOHC.cjs → chunk-WOLHGXXJ.cjs} +3 -3
- package/dist/chunk-ZDLZRGSC.js +7 -0
- package/dist/chunk-ZDLZRGSC.js.map +1 -0
- package/dist/error.cjs +14 -0
- package/dist/error.cjs.map +1 -0
- package/dist/error.d.cts +9 -0
- package/dist/error.d.ts +9 -0
- package/dist/error.js +5 -0
- package/dist/error.js.map +1 -0
- package/dist/index.cjs +30 -21
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +8 -7
- package/dist/index.js.map +1 -1
- package/dist/monorepo.cjs +3 -3
- package/dist/monorepo.js +2 -2
- package/dist/package-manager.cjs +10 -6
- package/dist/package-manager.d.cts +2 -1
- package/dist/package-manager.d.ts +2 -1
- package/dist/package-manager.js +1 -1
- package/dist/package.cjs +4 -4
- package/dist/package.js +2 -2
- package/dist/tsconfig.cjs +7 -7
- package/dist/tsconfig.js +1 -1
- package/package.json +14 -2
- package/dist/chunk-IRDIZG2L.cjs +0 -18
- package/dist/chunk-IRDIZG2L.cjs.map +0 -1
- package/dist/chunk-SUN6RRMM.js +0 -12
- package/dist/chunk-SUN6RRMM.js.map +0 -1
- /package/dist/{chunk-45ZLUVBF.cjs.map → chunk-5YG33J5B.cjs.map} +0 -0
- /package/dist/{chunk-QYGSOB5F.js.map → chunk-GMIFPTPB.js.map} +0 -0
- /package/dist/{chunk-BBGTIP2U.js.map → chunk-I3QTPGJY.js.map} +0 -0
- /package/dist/{chunk-DCD4MOHC.cjs.map → chunk-WOLHGXXJ.cjs.map} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
1
|
+
## @visulima/package [1.6.1](https://github.com/visulima/visulima/compare/@visulima/package@1.6.0...@visulima/package@1.6.1) (2024-04-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Dependencies
|
|
6
|
+
|
|
7
|
+
* **@visulima/fs:** upgraded to 2.0.4
|
|
8
|
+
|
|
9
|
+
## @visulima/package [1.6.0](https://github.com/visulima/visulima/compare/@visulima/package@1.5.3...@visulima/package@1.6.0) (2024-04-02)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
* **package:** added new findPackageManagerSync and NotFoundPackageError ([8648de4](https://github.com/visulima/visulima/commit/8648de4f4ce1fa4b083646eb1245821a7465e55b))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* extended PackageNotFoundError, added missing tests ([63223c2](https://github.com/visulima/visulima/commit/63223c2cae1e6cefece97c8988c27da3d259a6ec))
|
|
20
|
+
* fixed broken commit ([8917816](https://github.com/visulima/visulima/commit/89178166ff5d18717fd2afb3c1c5d6c2bfb09602))
|
|
21
|
+
|
|
1
22
|
## @visulima/package [1.5.3](https://github.com/visulima/visulima/compare/@visulima/package@1.5.2...@visulima/package@1.5.3) (2024-04-01)
|
|
2
23
|
|
|
3
24
|
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { e } from './chunk-U4YVB3GU.js';
|
|
2
|
+
import { execSync } from 'node:child_process';
|
|
3
|
+
import { existsSync, readFileSync } from 'node:fs';
|
|
4
|
+
import { findUp, findUpSync } from '@visulima/fs';
|
|
5
|
+
import { NotFoundError } from '@visulima/fs/error';
|
|
6
|
+
import { join, dirname } from 'pathe';
|
|
7
|
+
|
|
8
|
+
var o=["yarn.lock","package-lock.json","pnpm-lock.yaml","npm-shrinkwrap.json","bun.lockb"],m=a=>{let n;if(o.forEach(r=>{!n&&existsSync(join(a,r))&&(n=join(a,r));}),n)return n;let e$1=join(a,"package.json");if(existsSync(e$1)&&e(readFileSync(e$1,"utf8")).packageManager!==void 0)return e$1},f=a=>{if(!a)throw new NotFoundError("Could not find a package manager");if(a.endsWith("package.json")){let n=e(a);if(n.packageManager){let r=["npm","yarn","pnpm","bun"].find(l=>n.packageManager.startsWith(l));if(r)return {packageManager:r,path:dirname(a)}}}if(a.endsWith("yarn.lock"))return {packageManager:"yarn",path:dirname(a)};if(a.endsWith("package-lock.json")||a.endsWith("npm-shrinkwrap.json"))return {packageManager:"npm",path:dirname(a)};if(a.endsWith("pnpm-lock.yaml"))return {packageManager:"pnpm",path:dirname(a)};if(a.endsWith("bun.lockb"))return {packageManager:"bun",path:dirname(a)};throw new NotFoundError("Could not find a package manager")},b=async a=>{let n=await findUp(o,{type:"file",...a&&{cwd:a}});if(!n)throw new Error("Could not find lock file");return n},j=a=>{let n=findUpSync(o,{type:"file",...a&&{cwd:a}});if(!n)throw new Error("Could not find lock file");return n},U=async a=>{let n=await findUp(m,{...a&&{cwd:a}});return f(n)},W=a=>{let n=findUpSync(m,{...a&&{cwd:a}});return f(n)},L=a=>execSync(`${a} --version`).toString("utf8").trim(),_=async()=>{if(!process.env.npm_config_user_agent)return;let a=process.env.npm_config_user_agent.split(" ")[0],n=a.lastIndexOf("/"),e=a.slice(0,Math.max(0,n));return {name:e==="npminstall"?"cnpm":e,version:a.slice(Math.max(0,n+1))}};
|
|
9
|
+
|
|
10
|
+
export { b as a, j as b, U as c, W as d, L as e, _ as f };
|
|
11
|
+
//# sourceMappingURL=out.js.map
|
|
12
|
+
//# sourceMappingURL=chunk-44SW4DFI.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/package-manager.ts"],"names":["execSync","existsSync","readFileSync","findUp","findUpSync","NotFoundError","dirname","join","lockFileNames","packageMangerFindUpMatcher","directory","lockFile","lockFileName","packageJsonFilePath","parsePackageJson","findPackageManagerOnFile","foundFile","packageJson","foundPackageManager","prefix","findLockFile","cwd","filePath","findLockFileSync","findPackageManager","findPackageManagerSync","getPackageManagerVersion","name","identifyInitiatingPackageManager","pmSpec","separatorPos"],"mappings":"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","sourcesContent":["import { execSync } from \"node:child_process\";\nimport { existsSync, readFileSync } from \"node:fs\";\n\nimport { findUp, findUpSync } from \"@visulima/fs\";\nimport { NotFoundError } from \"@visulima/fs/error\";\nimport { dirname, join } from \"pathe\";\n\nimport { parsePackageJson } from \"./package-json\";\n\nconst lockFileNames = [\"yarn.lock\", \"package-lock.json\", \"pnpm-lock.yaml\", \"npm-shrinkwrap.json\", \"bun.lockb\"];\n\nconst packageMangerFindUpMatcher = (directory: string) => {\n let lockFile: string | undefined;\n\n lockFileNames.forEach((lockFileName) => {\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (!lockFile && existsSync(join(directory, lockFileName))) {\n lockFile = join(directory, lockFileName);\n }\n });\n\n if (lockFile) {\n return lockFile;\n }\n\n const packageJsonFilePath = join(directory, \"package.json\");\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (existsSync(packageJsonFilePath)) {\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n const packageJson = parsePackageJson(readFileSync(packageJsonFilePath, \"utf8\"));\n\n if (packageJson.packageManager !== undefined) {\n return packageJsonFilePath;\n }\n }\n\n return undefined;\n};\n\nconst findPackageManagerOnFile = (foundFile: string | undefined): PackageManagerResult => {\n if (!foundFile) {\n throw new NotFoundError(\"Could not find a package manager\");\n }\n\n if (foundFile.endsWith(\"package.json\")) {\n const packageJson = parsePackageJson(foundFile);\n\n if (packageJson.packageManager) {\n const packageManagerNames = [\"npm\", \"yarn\", \"pnpm\", \"bun\"] as const;\n const foundPackageManager = packageManagerNames.find((prefix) => (packageJson.packageManager as string).startsWith(prefix));\n\n if (foundPackageManager) {\n return {\n packageManager: foundPackageManager,\n path: dirname(foundFile),\n };\n }\n }\n }\n\n if (foundFile.endsWith(\"yarn.lock\")) {\n return {\n packageManager: \"yarn\",\n path: dirname(foundFile),\n };\n }\n\n if (foundFile.endsWith(\"package-lock.json\") || foundFile.endsWith(\"npm-shrinkwrap.json\")) {\n return {\n packageManager: \"npm\",\n path: dirname(foundFile),\n };\n }\n\n if (foundFile.endsWith(\"pnpm-lock.yaml\")) {\n return {\n packageManager: \"pnpm\",\n path: dirname(foundFile),\n };\n }\n\n if (foundFile.endsWith(\"bun.lockb\")) {\n return {\n packageManager: \"bun\",\n path: dirname(foundFile),\n };\n }\n\n throw new NotFoundError(\"Could not find a package manager\");\n};\n\n/**\n * An asynchronous function that finds a lock file in the specified directory or any of its parent directories.\n *\n * @param cwd - Optional. The directory path to start the search from. The type of `cwd` is part of an `Options` type,\n * specifically `URL | string`. Defaults to the current working directory.\n * @returns A `Promise` that resolves with the path of the found lock file.\n * The type of the returned promise is `Promise<string>`.\n * @throws An `Error` if no lock file is found.\n */\nexport const findLockFile = async (cwd?: URL | string): Promise<string> => {\n const filePath = await findUp(lockFileNames, {\n type: \"file\",\n ...(cwd && { cwd }),\n });\n\n if (!filePath) {\n throw new Error(\"Could not find lock file\");\n }\n\n return filePath;\n};\n\nexport const findLockFileSync = (cwd?: URL | string): string => {\n const filePath = findUpSync(lockFileNames, {\n type: \"file\",\n ...(cwd && { cwd }),\n });\n\n if (!filePath) {\n throw new Error(\"Could not find lock file\");\n }\n\n return filePath;\n};\n\nexport type PackageManager = \"bun\" | \"npm\" | \"pnpm\" | \"yarn\";\n\nexport type PackageManagerResult = {\n packageManager: PackageManager;\n path: string;\n};\n\n/**\n * An asynchronous function that finds the package manager used in a project based on the presence of lock files\n * or package.json configuration. If found, it returns the package manager and the path to the lock file or package.json.\n * Throws an error if no lock file or package.json is found.\n *\n * @param cwd - Optional. The current working directory to start the search from. The type of `cwd` is part of an `Options`\n * type, specifically `URL | string`.\n * @returns A `Promise` that resolves to an object containing the package manager and path.\n * The return type of the function is `Promise<PackageManagerResult>`.\n * @throws An `Error` if no lock file or package.json is found.\n */\nexport const findPackageManager = async (cwd?: URL | string): Promise<PackageManagerResult> => {\n const foundFile = await findUp(packageMangerFindUpMatcher, {\n ...(cwd && { cwd }),\n });\n\n return findPackageManagerOnFile(foundFile);\n};\n\n/**\n * An function that finds the package manager used in a project based on the presence of lock files\n * or package.json configuration. If found, it returns the package manager and the path to the lock file or package.json.\n * Throws an error if no lock file or package.json is found.\n *\n * @param cwd - Optional. The current working directory to start the search from. The type of `cwd` is part of an `Options`\n * type, specifically `URL | string`.\n * @returns A `Promise` that resolves to an object containing the package manager and path.\n * The return type of the function is `Promise<PackageManagerResult>`.\n * @throws An `Error` if no lock file or package.json is found.\n */\n\nexport const findPackageManagerSync = (cwd?: URL | string): PackageManagerResult => {\n const foundFile = findUpSync(packageMangerFindUpMatcher, {\n ...(cwd && { cwd }),\n });\n\n return findPackageManagerOnFile(foundFile);\n};\n\n/**\n * Function that retrieves the version of the specified package manager.\n *\n * @param name - The name of the package manager. The type of `name` is `string`.\n * @returns The version of the package manager. The return type of the function is `string`.\n */\nexport const getPackageManagerVersion = (name: string): string => execSync(`${name} --version`).toString(\"utf8\").trim();\n\n/**\n * An asynchronous function that detects what package manager executes the process.\n *\n * Supports npm, pnpm, Yarn, cnpm, and bun. And also any other package manager that sets the npm_config_user_agent env variable.\n *\n * @returns A `Promise` that resolves to an object containing the name and version of the package manager,\n * or undefined if the package manager information cannot be determined. The return type of the function\n * is `Promise<{ name: PackageManager | \"cnpm\"; version: string } | undefined>`.\n */\nexport const identifyInitiatingPackageManager = async (): Promise<\n | {\n name: PackageManager | \"cnpm\";\n version: string;\n }\n | undefined\n> => {\n if (!process.env.npm_config_user_agent) {\n return undefined;\n }\n\n const pmSpec = process.env.npm_config_user_agent.split(\" \")[0] as string;\n const separatorPos = pmSpec.lastIndexOf(\"/\");\n const name = pmSpec.slice(0, Math.max(0, separatorPos));\n\n return {\n name: name === \"npminstall\" ? \"cnpm\" : (name as PackageManager),\n version: pmSpec.slice(Math.max(0, separatorPos + 1)),\n };\n};\n"]}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkKSXRMTAQ_cjs = require('./chunk-KSXRMTAQ.cjs');
|
|
4
4
|
var fs$1 = require('fs');
|
|
5
5
|
var fs = require('@visulima/fs');
|
|
6
6
|
var pathe = require('pathe');
|
|
7
7
|
|
|
8
|
-
var g=t=>{if(fs$1.existsSync(pathe.join(t,"package.json"))){let n=fs.readJsonSync(pathe.join(t,"package.json"));if(n.name&&n.private!==!0)return "package.json"}},h=async t=>{try{let i=await
|
|
8
|
+
var g=t=>{if(fs$1.existsSync(pathe.join(t,"package.json"))){let n=fs.readJsonSync(pathe.join(t,"package.json"));if(n.name&&n.private!==!0)return "package.json"}},h=async t=>{try{let i=await chunkKSXRMTAQ_cjs.a(t);return pathe.dirname(i)}catch{}let n=await fs.findUp(".git/config",{...t&&{cwd:t},type:"file"});if(n)return pathe.dirname(pathe.dirname(n));let r=await fs.findUp(g,{...t&&{cwd:t},type:"file"});if(r)return pathe.dirname(r);throw new Error("Could not find root directory")},P=t=>{try{let i=chunkKSXRMTAQ_cjs.b(t);return pathe.dirname(i)}catch{}let n=fs.findUpSync(".git/config",{...t&&{cwd:t},type:"file"});if(n)return pathe.dirname(pathe.dirname(n));let r=fs.findUpSync(g,{...t&&{cwd:t},type:"file"});if(r)return pathe.dirname(r);throw new Error("Could not find root directory")};
|
|
9
9
|
|
|
10
10
|
exports.a = h;
|
|
11
11
|
exports.b = P;
|
|
12
12
|
//# sourceMappingURL=out.js.map
|
|
13
|
-
//# sourceMappingURL=chunk-
|
|
13
|
+
//# sourceMappingURL=chunk-5YG33J5B.cjs.map
|
|
@@ -12,4 +12,4 @@ var _=s=>parse(readFileSync(s)),L=()=>{let{findPnpApi:s}=A;return s?.(process.cw
|
|
|
12
12
|
|
|
13
13
|
export { J as a, ie as b, be as c, re as d, ke as e, ce as f, Ie as g };
|
|
14
14
|
//# sourceMappingURL=out.js.map
|
|
15
|
-
//# sourceMappingURL=chunk-
|
|
15
|
+
//# sourceMappingURL=chunk-CMEGXNWH.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/tsconfig.ts","../src/read-tsconfig.ts","../src/utils/resolve-extends-path.ts"],"names":["findUp","findUpSync","writeJson","NotFoundError","toPath","join","realpathSync","readFileSync","parse","dirname","normalize","relative","resolve","toNamespacedPath","existsSync","statSync","Module","isAbsolute","resolveExports","readJsonc","jsonPath","getPnpApi","findPnpApi","resolveFromPackageJsonPath","packageJsonPath","subpath","ignoreExports","cache","cacheKey","packageJson","resolvedPath","resolvedExport","PACKAGE_JSON","TS_CONFIG_JSON","resolveExtendsPath","requestedPath","directoryPath","filePath","orgOrName","remaining","packageName","pnpApi","resolveWithPnp","resolved","packagePath","directory","path","fullPackagePath","jsonExtension","fullPackagePathWithJson","fullPackageJsonPath","tsconfigPath","resolve_extends_path_default","implicitBaseUrlSymbol","normalizePath","resolveExtends","extendsPath","fromDirectoryPath","circularExtendsTracker","options","resolvedExtendsPath","extendsDirectoryPath","extendsConfig","internalParseTsConfig","compilerOptions","resolvePaths","property","unresolvedPath","file","realTsconfigPath","config","extendsPathList","merged","normalizedPaths","resolvedBaseUrl","relativeBaseUrl","outDir","element","watchOptions","excludePath","readTsConfig","read_tsconfig_default","TsConfigFileCache","findTsConfig","cwd","configFileName","output","findTSConfig","findTsConfigSync","findTSConfigSync","writeTsConfig","data","writeOptions","writeTSConfig"],"mappings":"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","sourcesContent":["import type { WriteJsonOptions } from \"@visulima/fs\";\nimport { findUp, findUpSync, writeJson } from \"@visulima/fs\";\nimport { NotFoundError } from \"@visulima/fs/error\";\nimport { toPath } from \"@visulima/fs/utils\";\nimport { join } from \"pathe\";\nimport type { TsConfigJson } from \"type-fest\";\n\nimport readTsConfig from \"./read-tsconfig\";\nimport type { TsConfigJsonResolved } from \"./types\";\n\ntype Options = {\n cache?: Map<string, TsConfigJsonResolved> | boolean;\n configFileName?: string;\n};\n\nconst TsConfigFileCache = new Map<string, TsConfigResult>();\n\nexport type TsConfigResult = {\n config: TsConfigJsonResolved;\n path: string;\n};\n\n/**\n * An asynchronous function that retrieves the TSConfig by searching for the \"tsconfig.json\" first,\n * second attempt is to look for the \"jsconfig.json\" file from a given current working directory.\n *\n * @param cwd - Optional. The current working directory from which to search for the \"tsconfig.json\" file.\n * The type of `cwd` is `string`.\n * @returns A `Promise` that resolves to the TSConfig result object.\n * The return type of the function is `Promise<TsConfigResult>`.\n * @throws An `Error` when the \"tsconfig.json\" file is not found.\n */\nexport const findTsConfig = async (cwd?: URL | string, options: Options = {}): Promise<TsConfigResult> => {\n const configFileName = options.configFileName ?? \"tsconfig.json\";\n\n let filePath = await findUp(configFileName, {\n ...(cwd && { cwd }),\n type: \"file\",\n });\n\n if (!filePath) {\n filePath = await findUp(\"jsconfig.json\", {\n ...(cwd && { cwd }),\n type: \"file\",\n });\n }\n\n if (!filePath) {\n throw new NotFoundError(`No such file or directory, for ${configFileName} or jsconfig.json found.`);\n }\n\n const cache = options.cache && typeof options.cache !== \"boolean\" ? options.cache : TsConfigFileCache;\n\n if (options.cache && cache.has(filePath)) {\n return cache.get(filePath) as TsConfigResult;\n }\n\n const output = {\n config: readTsConfig(filePath),\n path: filePath,\n };\n\n if (options.cache) {\n cache.set(filePath, output);\n }\n\n return output;\n};\n\n// @deprecate Please use `findTsConfig` instead.\nexport const findTSConfig = findTsConfig;\n\nexport const findTsConfigSync = (cwd?: URL | string, options: Options = {}): TsConfigResult => {\n const configFileName = options.configFileName ?? \"tsconfig.json\";\n\n let filePath = findUpSync(configFileName, {\n ...(cwd && { cwd }),\n type: \"file\",\n });\n\n if (!filePath) {\n filePath = findUpSync(\"jsconfig.json\", {\n ...(cwd && { cwd }),\n type: \"file\",\n });\n }\n\n if (!filePath) {\n throw new NotFoundError(`No such file or directory, for ${configFileName} or jsconfig.json found.`);\n }\n\n const cache = options.cache && typeof options.cache !== \"boolean\" ? options.cache : TsConfigFileCache;\n\n if (options.cache && cache.has(filePath)) {\n return cache.get(filePath) as TsConfigResult;\n }\n\n const output = {\n config: readTsConfig(filePath),\n path: filePath,\n };\n\n if (options.cache) {\n cache.set(filePath, output);\n }\n\n return output;\n};\n\n// @deprecate Please use `findTsConfigSync` instead.\nexport const findTSConfigSync = findTsConfigSync;\n\n/**\n * An asynchronous function that writes the provided TypeScript configuration object to a tsconfig.json file.\n *\n * @param tsConfig - The TypeScript configuration object to write. The type of `tsConfig` is `TsConfigJson`.\n * @param options - Optional. The write options and the current working directory. The type of `options` is an\n * intersection type of `WriteOptions` and a Record type with an optional `cwd` key of type `string`.\n * @returns A `Promise` that resolves when the tsconfig.json file has been written.\n * The return type of function is `Promise<void>`.\n */\nexport const writeTsConfig = async (data: TsConfigJson, options: WriteJsonOptions & { cwd?: URL | string } = {}): Promise<void> => {\n const { cwd, ...writeOptions } = options;\n\n const directory = toPath(options.cwd ?? process.cwd());\n\n await writeJson(join(directory, \"tsconfig.json\"), data, writeOptions);\n};\n\n// @deprecate Please use `writeTsconfig` instead.\nexport const writeTSConfig = writeTsConfig;\n","/**\n * A modified version of `readTsconfig` from `https://github.com/privatenumber/get-tsconfig/blob/develop/src/parse-tsconfig/index.ts`\n *\n * MIT License\n * Copyright (c) Hiroki Osame <hiroki.osame@gmail.com>\n */\nimport { realpathSync } from \"node:fs\";\n\nimport { readFileSync } from \"@visulima/fs\";\nimport { NotFoundError } from \"@visulima/fs/error\";\nimport { parse } from \"jsonc-parser\";\nimport { dirname, join, normalize, relative, resolve, toNamespacedPath } from \"pathe\";\nimport type { TsConfigJson } from \"type-fest\";\n\nimport type { TsConfigJsonResolved } from \"./types\";\nimport resolveExtendsPath from \"./utils/resolve-extends-path\";\n\ntype Options = {\n tscCompatible?: boolean;\n};\n\nconst implicitBaseUrlSymbol = Symbol(\"implicitBaseUrl\");\n\nconst readJsonc = (jsonPath: string) => parse(readFileSync(jsonPath) as string) as unknown;\n// eslint-disable-next-line security/detect-unsafe-regex\nconst normalizePath = (path: string): string => toNamespacedPath(/^\\.{1,2}(?:\\/.*)?$/.test(path) ? path : `./${path}`);\n\nconst resolveExtends = (extendsPath: string, fromDirectoryPath: string, circularExtendsTracker: Set<string>, options?: Options) => {\n const resolvedExtendsPath = resolveExtendsPath(extendsPath, fromDirectoryPath);\n\n if (!resolvedExtendsPath) {\n throw new NotFoundError(`No such file or directory, for '${extendsPath}' found.`);\n }\n\n if (circularExtendsTracker.has(resolvedExtendsPath)) {\n throw new Error(`Circularity detected while resolving configuration: ${resolvedExtendsPath}`);\n }\n\n circularExtendsTracker.add(resolvedExtendsPath);\n\n const extendsDirectoryPath = dirname(resolvedExtendsPath);\n // eslint-disable-next-line @typescript-eslint/no-use-before-define\n const extendsConfig = internalParseTsConfig(resolvedExtendsPath, options, circularExtendsTracker);\n\n delete extendsConfig.references;\n\n const { compilerOptions } = extendsConfig;\n\n if (compilerOptions) {\n const resolvePaths = [\"baseUrl\", \"outDir\"] as const;\n\n // eslint-disable-next-line no-loops/no-loops,no-restricted-syntax\n for (const property of resolvePaths) {\n // eslint-disable-next-line security/detect-object-injection\n const unresolvedPath = compilerOptions[property];\n\n if (unresolvedPath) {\n // eslint-disable-next-line security/detect-object-injection\n compilerOptions[property] = relative(fromDirectoryPath, join(extendsDirectoryPath, unresolvedPath)).replaceAll(\"\\\\\", \"/\") || \"./\";\n }\n }\n }\n\n if (extendsConfig.files) {\n extendsConfig.files = extendsConfig.files.map((file) => relative(fromDirectoryPath, join(extendsDirectoryPath, file)));\n }\n\n if (extendsConfig.include) {\n extendsConfig.include = extendsConfig.include.map((file) => relative(fromDirectoryPath, join(extendsDirectoryPath, file)));\n }\n\n if (extendsConfig.exclude) {\n extendsConfig.exclude = extendsConfig.exclude.map((file) => relative(fromDirectoryPath, join(extendsDirectoryPath, file)));\n }\n\n return extendsConfig;\n};\n\n// eslint-disable-next-line sonarjs/cognitive-complexity\nconst internalParseTsConfig = (tsconfigPath: string, options?: Options, circularExtendsTracker = new Set<string>()): TsConfigJsonResolved => {\n let realTsconfigPath: string;\n\n try {\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n realTsconfigPath = realpathSync(tsconfigPath) as string;\n } catch {\n throw new Error(`Cannot resolve tsconfig at path: ${tsconfigPath}`);\n }\n\n /**\n * Decided not to cache the TsConfigJsonResolved object because it's\n * mutable.\n *\n * Note how `resolveExtends` can call `readTsconfig` rescursively\n * and actually mutates the object. It can also be mutated in\n * user-land.\n *\n * By only caching fs results, we can avoid serving mutated objects\n */\n let config: TsConfigJson = readJsonc(realTsconfigPath) || {};\n\n if (typeof config !== \"object\") {\n throw new SyntaxError(`Failed to parse tsconfig at: ${tsconfigPath}`);\n }\n\n const directoryPath = dirname(realTsconfigPath);\n\n if (config.compilerOptions) {\n const { compilerOptions } = config;\n if (compilerOptions.paths && !compilerOptions.baseUrl) {\n type WithImplicitBaseUrl = TsConfigJson.CompilerOptions & {\n [implicitBaseUrlSymbol]: string;\n };\n // eslint-disable-next-line security/detect-object-injection\n (compilerOptions as WithImplicitBaseUrl)[implicitBaseUrlSymbol] = directoryPath;\n }\n }\n\n if (config.extends) {\n const extendsPathList = Array.isArray(config.extends) ? config.extends : [config.extends];\n\n delete config.extends;\n\n // eslint-disable-next-line no-loops/no-loops,no-restricted-syntax,etc/no-assign-mutated-array\n for (const extendsPath of extendsPathList.reverse()) {\n const extendsConfig = resolveExtends(extendsPath, directoryPath, new Set(circularExtendsTracker), options);\n const merged = {\n ...extendsConfig,\n ...config,\n\n compilerOptions: {\n ...extendsConfig.compilerOptions,\n ...config.compilerOptions,\n },\n };\n\n if (extendsConfig.watchOptions) {\n merged.watchOptions = {\n ...extendsConfig.watchOptions,\n ...config.watchOptions,\n };\n }\n\n config = merged;\n }\n }\n\n if (config.compilerOptions) {\n const { compilerOptions } = config;\n const normalizedPaths = [\"baseUrl\", \"rootDir\"] as const;\n\n // eslint-disable-next-line no-loops/no-loops,no-restricted-syntax\n for (const property of normalizedPaths) {\n // eslint-disable-next-line security/detect-object-injection\n const unresolvedPath = compilerOptions[property];\n\n if (unresolvedPath) {\n const resolvedBaseUrl = resolve(directoryPath, unresolvedPath);\n const relativeBaseUrl = relative(directoryPath, resolvedBaseUrl);\n\n // eslint-disable-next-line security/detect-object-injection\n compilerOptions[property] = normalizePath(relativeBaseUrl);\n }\n }\n\n const { outDir } = compilerOptions;\n\n if (outDir) {\n if (!Array.isArray(config.exclude)) {\n config.exclude = [];\n }\n\n if (!config.exclude.includes(outDir)) {\n config.exclude.push(outDir);\n }\n\n compilerOptions.outDir = normalizePath(outDir);\n }\n\n if (options?.tscCompatible && compilerOptions.module === \"node16\") {\n compilerOptions.allowSyntheticDefaultImports = compilerOptions.allowSyntheticDefaultImports ?? true;\n compilerOptions.esModuleInterop = compilerOptions.esModuleInterop ?? true;\n compilerOptions.moduleDetection = compilerOptions.moduleDetection ?? \"force\";\n compilerOptions.moduleResolution = compilerOptions.moduleResolution ?? \"node16\";\n compilerOptions.target = compilerOptions.target ?? \"es2022\";\n compilerOptions.useDefineForClassFields = compilerOptions.useDefineForClassFields ?? true;\n }\n\n if (options?.tscCompatible && compilerOptions.strict) {\n compilerOptions.noImplicitAny = compilerOptions.noImplicitAny ?? true;\n compilerOptions.noImplicitThis = compilerOptions.noImplicitThis ?? true;\n compilerOptions.strictNullChecks = compilerOptions.strictNullChecks ?? true;\n compilerOptions.strictFunctionTypes = compilerOptions.strictFunctionTypes ?? true;\n compilerOptions.strictBindCallApply = compilerOptions.strictBindCallApply ?? true;\n compilerOptions.strictPropertyInitialization = compilerOptions.strictPropertyInitialization ?? true;\n compilerOptions.alwaysStrict = compilerOptions.alwaysStrict ?? true;\n compilerOptions.useUnknownInCatchVariables = compilerOptions.useUnknownInCatchVariables ?? true;\n }\n\n if (options?.tscCompatible && compilerOptions.isolatedModules) {\n compilerOptions.preserveConstEnums = compilerOptions.preserveConstEnums ?? true;\n }\n\n if (options?.tscCompatible && compilerOptions.esModuleInterop) {\n compilerOptions.allowSyntheticDefaultImports = compilerOptions.allowSyntheticDefaultImports ?? true;\n }\n\n if (options?.tscCompatible && compilerOptions.target === \"esnext\") {\n compilerOptions.useDefineForClassFields = compilerOptions.useDefineForClassFields ?? true;\n }\n } else {\n config.compilerOptions = {};\n }\n\n if (config.files) {\n config.files = config.files.map((element) => normalizePath(element));\n }\n\n if (config.include) {\n config.include = config.include.map((element) => normalize(element));\n }\n\n if (config.watchOptions) {\n const { watchOptions } = config;\n\n if (watchOptions.excludeDirectories) {\n watchOptions.excludeDirectories = watchOptions.excludeDirectories.map((excludePath) => resolve(directoryPath, excludePath));\n }\n }\n\n return config;\n};\n\nconst readTsConfig = (tsconfigPath: string, options?: Options): TsConfigJsonResolved => internalParseTsConfig(tsconfigPath, options);\n\nexport default readTsConfig;\n","/**\n * A modified version of `resolveExtendsPath` from `https://github.com/privatenumber/get-tsconfig/blob/develop/src/parse-tsconfig/resolve-extends-path.ts`\n *\n * MIT License\n * Copyright (c) Hiroki Osame <hiroki.osame@gmail.com>\n */\nimport { existsSync, statSync } from \"node:fs\";\nimport Module from \"node:module\";\nimport { isAbsolute, join, resolve } from \"node:path\";\n\nimport { findUpSync, readFileSync } from \"@visulima/fs\";\nimport { parse } from \"jsonc-parser\";\nimport type { PathConditions } from \"resolve-pkg-maps\";\nimport { resolveExports } from \"resolve-pkg-maps\";\nimport type { PackageJson } from \"type-fest\";\n\nimport type { Cache } from \"../types\";\n\nconst readJsonc = (jsonPath: string) => parse(readFileSync(jsonPath) as string) as unknown;\n\nconst getPnpApi = () => {\n const { findPnpApi } = Module;\n\n // https://yarnpkg.com/advanced/pnpapi/#requirepnpapi\n return findPnpApi?.(process.cwd());\n};\n\nconst resolveFromPackageJsonPath = (packageJsonPath: string, subpath: string, ignoreExports?: boolean, cache?: Cache<string>) => {\n const cacheKey = `resolveFromPackageJsonPath:${packageJsonPath}:${subpath}:${ignoreExports}`;\n\n if (cache?.has(cacheKey)) {\n return cache.get(cacheKey);\n }\n\n const packageJson = readJsonc(packageJsonPath);\n\n if (!packageJson) {\n return undefined;\n }\n\n let resolvedPath = subpath || \"tsconfig.json\";\n\n if (!ignoreExports && (packageJson as PackageJson).exports) {\n try {\n const [resolvedExport] = resolveExports((packageJson as PackageJson).exports as PathConditions, subpath, [\"require\", \"types\"]);\n\n resolvedPath = resolvedExport as string;\n } catch {\n // Block\n return false;\n }\n } else if (!subpath && (packageJson as PackageJson)[\"tsconfig\"]) {\n resolvedPath = (packageJson as PackageJson)[\"tsconfig\"] as string;\n }\n\n resolvedPath = join(packageJsonPath, \"..\", resolvedPath);\n\n cache?.set(cacheKey, resolvedPath);\n\n return resolvedPath;\n};\n\nconst PACKAGE_JSON = \"package.json\";\nconst TS_CONFIG_JSON = \"tsconfig.json\";\n\n// eslint-disable-next-line sonarjs/cognitive-complexity\nconst resolveExtendsPath = (requestedPath: string, directoryPath: string, cache?: Cache<string>): string | undefined => {\n let filePath = requestedPath;\n\n if (requestedPath === \"..\") {\n filePath = join(filePath, TS_CONFIG_JSON);\n }\n\n if (requestedPath.startsWith(\".\")) {\n filePath = resolve(directoryPath, filePath);\n }\n\n if (isAbsolute(filePath)) {\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (existsSync(filePath)) {\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (statSync(filePath).isFile()) {\n return filePath;\n }\n } else if (!filePath.endsWith(\".json\")) {\n const jsonPath = `${filePath}.json`;\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (existsSync(jsonPath)) {\n return jsonPath;\n }\n }\n\n return undefined;\n }\n\n const [orgOrName, ...remaining] = requestedPath.split(\"/\");\n const packageName = ((orgOrName as string).startsWith(\"@\") ? `${orgOrName}/${remaining.shift()}` : orgOrName) as string;\n const subpath = remaining.join(\"/\");\n\n const pnpApi = getPnpApi();\n\n if (pnpApi) {\n const { resolveRequest: resolveWithPnp } = pnpApi;\n\n try {\n if (packageName === requestedPath) {\n const packageJsonPath = resolveWithPnp(join(packageName, PACKAGE_JSON), directoryPath);\n\n if (packageJsonPath) {\n const resolvedPath = resolveFromPackageJsonPath(packageJsonPath, subpath, false, cache);\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (resolvedPath && existsSync(resolvedPath)) {\n return resolvedPath;\n }\n }\n } else {\n let resolved: string | null;\n\n try {\n resolved = resolveWithPnp(requestedPath, directoryPath, { extensions: [\".json\"] });\n } catch {\n resolved = resolveWithPnp(join(requestedPath, TS_CONFIG_JSON), directoryPath);\n }\n\n if (resolved) {\n return resolved;\n }\n }\n } catch {\n /* empty */\n }\n }\n\n const packagePath = findUpSync(\n (directory) => {\n const path = join(directory, \"node_modules\", packageName);\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (existsSync(path)) {\n return join(\"node_modules\", packageName);\n }\n\n return undefined;\n },\n {\n cwd: directoryPath,\n type: \"directory\",\n },\n );\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (!packagePath || !statSync(packagePath).isDirectory()) {\n return undefined;\n }\n\n const packageJsonPath = join(packagePath, PACKAGE_JSON);\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (existsSync(packageJsonPath)) {\n const resolvedPath = resolveFromPackageJsonPath(packageJsonPath, subpath, false, cache);\n\n // Blocked\n if (resolvedPath === false) {\n return undefined;\n }\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (resolvedPath && existsSync(resolvedPath) && statSync(resolvedPath).isFile()) {\n return resolvedPath;\n }\n }\n\n const fullPackagePath = join(packagePath, subpath);\n const jsonExtension = fullPackagePath.endsWith(\".json\");\n\n if (!jsonExtension) {\n const fullPackagePathWithJson = `${fullPackagePath}.json`;\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (existsSync(fullPackagePathWithJson)) {\n return fullPackagePathWithJson;\n }\n }\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (!existsSync(fullPackagePath)) {\n return undefined;\n }\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (statSync(fullPackagePath).isDirectory()) {\n const fullPackageJsonPath = join(fullPackagePath, PACKAGE_JSON);\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (existsSync(fullPackageJsonPath)) {\n const resolvedPath = resolveFromPackageJsonPath(fullPackageJsonPath, \"\", true, cache);\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (resolvedPath && existsSync(resolvedPath)) {\n return resolvedPath;\n }\n }\n\n const tsconfigPath = join(fullPackagePath, TS_CONFIG_JSON);\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (existsSync(tsconfigPath)) {\n return tsconfigPath;\n }\n } else if (jsonExtension) {\n return fullPackagePath;\n }\n\n return undefined;\n};\n\nexport default resolveExtendsPath;\n"]}
|
|
1
|
+
{"version":3,"sources":["../src/tsconfig.ts","../src/read-tsconfig.ts","../src/utils/resolve-extends-path.ts"],"names":["findUp","findUpSync","writeJson","NotFoundError","toPath","join","realpathSync","readFileSync","parse","dirname","normalize","relative","resolve","toNamespacedPath","existsSync","statSync","Module","isAbsolute","resolveExports","readJsonc","jsonPath","getPnpApi","findPnpApi","resolveFromPackageJsonPath","packageJsonPath","subpath","ignoreExports","cache","cacheKey","packageJson","resolvedPath","resolvedExport","PACKAGE_JSON","TS_CONFIG_JSON","resolveExtendsPath","requestedPath","directoryPath","filePath","orgOrName","remaining","packageName","pnpApi","resolveWithPnp","resolved","packagePath","directory","path","fullPackagePath","jsonExtension","fullPackagePathWithJson","fullPackageJsonPath","tsconfigPath","resolve_extends_path_default","implicitBaseUrlSymbol","normalizePath","resolveExtends","extendsPath","fromDirectoryPath","circularExtendsTracker","options","resolvedExtendsPath","extendsDirectoryPath","extendsConfig","internalParseTsConfig","compilerOptions","resolvePaths","property","unresolvedPath","file","realTsconfigPath","config","extendsPathList","merged","normalizedPaths","resolvedBaseUrl","relativeBaseUrl","outDir","element","watchOptions","excludePath","readTsConfig","read_tsconfig_default","TsConfigFileCache","findTsConfig","cwd","configFileName","output","findTSConfig","findTsConfigSync","findTSConfigSync","writeTsConfig","data","writeOptions","writeTSConfig"],"mappings":"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","sourcesContent":["import type { WriteJsonOptions } from \"@visulima/fs\";\nimport { findUp, findUpSync, writeJson } from \"@visulima/fs\";\nimport { NotFoundError } from \"@visulima/fs/error\";\nimport { toPath } from \"@visulima/fs/utils\";\nimport { join } from \"pathe\";\nimport type { TsConfigJson } from \"type-fest\";\n\nimport readTsConfig from \"./read-tsconfig\";\nimport type { TsConfigJsonResolved } from \"./types\";\n\ntype Options = {\n cache?: Map<string, TsConfigJsonResolved> | boolean;\n configFileName?: string;\n};\n\nconst TsConfigFileCache = new Map<string, TsConfigResult>();\n\nexport type TsConfigResult = {\n config: TsConfigJsonResolved;\n path: string;\n};\n\n/**\n * An asynchronous function that retrieves the TSConfig by searching for the \"tsconfig.json\" first,\n * second attempt is to look for the \"jsconfig.json\" file from a given current working directory.\n *\n * @param cwd - Optional. The current working directory from which to search for the \"tsconfig.json\" file.\n * The type of `cwd` is `string`.\n * @returns A `Promise` that resolves to the TSConfig result object.\n * The return type of the function is `Promise<TsConfigResult>`.\n * @throws An `Error` when the \"tsconfig.json\" file is not found.\n */\nexport const findTsConfig = async (cwd?: URL | string, options: Options = {}): Promise<TsConfigResult> => {\n const configFileName = options.configFileName ?? \"tsconfig.json\";\n\n let filePath = await findUp(configFileName, {\n ...(cwd && { cwd }),\n type: \"file\",\n });\n\n if (!filePath) {\n filePath = await findUp(\"jsconfig.json\", {\n ...(cwd && { cwd }),\n type: \"file\",\n });\n }\n\n if (!filePath) {\n throw new NotFoundError(`No such file or directory, for ${configFileName} or jsconfig.json found.`);\n }\n\n const cache = options.cache && typeof options.cache !== \"boolean\" ? options.cache : TsConfigFileCache;\n\n if (options.cache && cache.has(filePath)) {\n return cache.get(filePath) as TsConfigResult;\n }\n\n const output = {\n config: readTsConfig(filePath),\n path: filePath,\n };\n\n if (options.cache) {\n cache.set(filePath, output);\n }\n\n return output;\n};\n\n// @deprecate Please use `findTsConfig` instead.\nexport const findTSConfig = findTsConfig;\n\nexport const findTsConfigSync = (cwd?: URL | string, options: Options = {}): TsConfigResult => {\n const configFileName = options.configFileName ?? \"tsconfig.json\";\n\n let filePath = findUpSync(configFileName, {\n ...(cwd && { cwd }),\n type: \"file\",\n });\n\n if (!filePath) {\n filePath = findUpSync(\"jsconfig.json\", {\n ...(cwd && { cwd }),\n type: \"file\",\n });\n }\n\n if (!filePath) {\n throw new NotFoundError(`No such file or directory, for ${configFileName} or jsconfig.json found.`);\n }\n\n const cache = options.cache && typeof options.cache !== \"boolean\" ? options.cache : TsConfigFileCache;\n\n if (options.cache && cache.has(filePath)) {\n return cache.get(filePath) as TsConfigResult;\n }\n\n const output = {\n config: readTsConfig(filePath),\n path: filePath,\n };\n\n if (options.cache) {\n cache.set(filePath, output);\n }\n\n return output;\n};\n\n// @deprecate Please use `findTsConfigSync` instead.\nexport const findTSConfigSync = findTsConfigSync;\n\n/**\n * An asynchronous function that writes the provided TypeScript configuration object to a tsconfig.json file.\n *\n * @param tsConfig - The TypeScript configuration object to write. The type of `tsConfig` is `TsConfigJson`.\n * @param options - Optional. The write options and the current working directory. The type of `options` is an\n * intersection type of `WriteOptions` and a Record type with an optional `cwd` key of type `string`.\n * @returns A `Promise` that resolves when the tsconfig.json file has been written.\n * The return type of function is `Promise<void>`.\n */\nexport const writeTsConfig = async (data: TsConfigJson, options: WriteJsonOptions & { cwd?: URL | string } = {}): Promise<void> => {\n const { cwd, ...writeOptions } = options;\n\n const directory = toPath(options.cwd ?? process.cwd());\n\n await writeJson(join(directory, \"tsconfig.json\"), data, writeOptions);\n};\n\n// @deprecate Please use `writeTsconfig` instead.\nexport const writeTSConfig = writeTsConfig;\n","/**\n * A modified version of `readTsconfig` from `https://github.com/privatenumber/get-tsconfig/blob/develop/src/parse-tsconfig/index.ts`\n *\n * MIT License\n * Copyright (c) Hiroki Osame <hiroki.osame@gmail.com>\n */\nimport { realpathSync } from \"node:fs\";\n\nimport { readFileSync } from \"@visulima/fs\";\nimport { NotFoundError } from \"@visulima/fs/error\";\nimport { parse } from \"jsonc-parser\";\nimport { dirname, join, normalize, relative, resolve, toNamespacedPath } from \"pathe\";\nimport type { TsConfigJson } from \"type-fest\";\n\nimport type { TsConfigJsonResolved } from \"./types\";\nimport resolveExtendsPath from \"./utils/resolve-extends-path\";\n\ntype Options = {\n tscCompatible?: boolean;\n};\n\nconst implicitBaseUrlSymbol = Symbol(\"implicitBaseUrl\");\n\nconst readJsonc = (jsonPath: string) => parse(readFileSync(jsonPath) as string) as unknown;\n// eslint-disable-next-line security/detect-unsafe-regex\nconst normalizePath = (path: string): string => toNamespacedPath(/^\\.{1,2}(?:\\/.*)?$/.test(path) ? path : `./${path}`);\n\nconst resolveExtends = (extendsPath: string, fromDirectoryPath: string, circularExtendsTracker: Set<string>, options?: Options) => {\n const resolvedExtendsPath = resolveExtendsPath(extendsPath, fromDirectoryPath);\n\n if (!resolvedExtendsPath) {\n throw new NotFoundError(`No such file or directory, for '${extendsPath}' found.`);\n }\n\n if (circularExtendsTracker.has(resolvedExtendsPath)) {\n throw new Error(`Circularity detected while resolving configuration: ${resolvedExtendsPath}`);\n }\n\n circularExtendsTracker.add(resolvedExtendsPath);\n\n const extendsDirectoryPath = dirname(resolvedExtendsPath);\n // eslint-disable-next-line @typescript-eslint/no-use-before-define\n const extendsConfig = internalParseTsConfig(resolvedExtendsPath, options, circularExtendsTracker);\n\n delete extendsConfig.references;\n\n const { compilerOptions } = extendsConfig;\n\n if (compilerOptions) {\n const resolvePaths = [\"baseUrl\", \"outDir\"] as const;\n\n // eslint-disable-next-line no-loops/no-loops,no-restricted-syntax\n for (const property of resolvePaths) {\n // eslint-disable-next-line security/detect-object-injection\n const unresolvedPath = compilerOptions[property];\n\n if (unresolvedPath) {\n // eslint-disable-next-line security/detect-object-injection\n compilerOptions[property] = relative(fromDirectoryPath, join(extendsDirectoryPath, unresolvedPath)).replaceAll(\"\\\\\", \"/\") || \"./\";\n }\n }\n }\n\n if (extendsConfig.files) {\n extendsConfig.files = extendsConfig.files.map((file) => relative(fromDirectoryPath, join(extendsDirectoryPath, file)));\n }\n\n if (extendsConfig.include) {\n extendsConfig.include = extendsConfig.include.map((file) => relative(fromDirectoryPath, join(extendsDirectoryPath, file)));\n }\n\n if (extendsConfig.exclude) {\n extendsConfig.exclude = extendsConfig.exclude.map((file) => relative(fromDirectoryPath, join(extendsDirectoryPath, file)));\n }\n\n return extendsConfig;\n};\n\n// eslint-disable-next-line sonarjs/cognitive-complexity\nconst internalParseTsConfig = (tsconfigPath: string, options?: Options, circularExtendsTracker = new Set<string>()): TsConfigJsonResolved => {\n let realTsconfigPath: string;\n\n try {\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n realTsconfigPath = realpathSync(tsconfigPath) as string;\n } catch {\n throw new Error(`Cannot resolve tsconfig at path: ${tsconfigPath}`);\n }\n\n /**\n * Decided not to cache the TsConfigJsonResolved object because it's\n * mutable.\n *\n * Note how `resolveExtends` can call `readTsconfig` rescursively\n * and actually mutates the object. It can also be mutated in\n * user-land.\n *\n * By only caching fs results, we can avoid serving mutated objects\n */\n let config: TsConfigJson = readJsonc(realTsconfigPath) || {};\n\n if (typeof config !== \"object\") {\n throw new SyntaxError(`Failed to parse tsconfig at: ${tsconfigPath}`);\n }\n\n const directoryPath = dirname(realTsconfigPath);\n\n if (config.compilerOptions) {\n const { compilerOptions } = config;\n if (compilerOptions.paths && !compilerOptions.baseUrl) {\n type WithImplicitBaseUrl = TsConfigJson.CompilerOptions & {\n [implicitBaseUrlSymbol]: string;\n };\n // eslint-disable-next-line security/detect-object-injection\n (compilerOptions as WithImplicitBaseUrl)[implicitBaseUrlSymbol] = directoryPath;\n }\n }\n\n if (config.extends) {\n const extendsPathList = Array.isArray(config.extends) ? config.extends : [config.extends];\n\n delete config.extends;\n\n // eslint-disable-next-line no-loops/no-loops,no-restricted-syntax,etc/no-assign-mutated-array\n for (const extendsPath of extendsPathList.reverse()) {\n const extendsConfig = resolveExtends(extendsPath, directoryPath, new Set(circularExtendsTracker), options);\n const merged = {\n ...extendsConfig,\n ...config,\n\n compilerOptions: {\n ...extendsConfig.compilerOptions,\n ...config.compilerOptions,\n },\n };\n\n if (extendsConfig.watchOptions) {\n merged.watchOptions = {\n ...extendsConfig.watchOptions,\n ...config.watchOptions,\n };\n }\n\n config = merged;\n }\n }\n\n if (config.compilerOptions) {\n const { compilerOptions } = config;\n const normalizedPaths = [\"baseUrl\", \"rootDir\"] as const;\n\n // eslint-disable-next-line no-loops/no-loops,no-restricted-syntax\n for (const property of normalizedPaths) {\n // eslint-disable-next-line security/detect-object-injection\n const unresolvedPath = compilerOptions[property];\n\n if (unresolvedPath) {\n const resolvedBaseUrl = resolve(directoryPath, unresolvedPath);\n const relativeBaseUrl = relative(directoryPath, resolvedBaseUrl);\n\n // eslint-disable-next-line security/detect-object-injection\n compilerOptions[property] = normalizePath(relativeBaseUrl);\n }\n }\n\n const { outDir } = compilerOptions;\n\n if (outDir) {\n if (!Array.isArray(config.exclude)) {\n config.exclude = [];\n }\n\n if (!config.exclude.includes(outDir)) {\n config.exclude.push(outDir);\n }\n\n compilerOptions.outDir = normalizePath(outDir);\n }\n\n if (options?.tscCompatible && compilerOptions.module === \"node16\") {\n compilerOptions.allowSyntheticDefaultImports = compilerOptions.allowSyntheticDefaultImports ?? true;\n compilerOptions.esModuleInterop = compilerOptions.esModuleInterop ?? true;\n compilerOptions.moduleDetection = compilerOptions.moduleDetection ?? \"force\";\n compilerOptions.moduleResolution = compilerOptions.moduleResolution ?? \"node16\";\n compilerOptions.target = compilerOptions.target ?? \"es2022\";\n compilerOptions.useDefineForClassFields = compilerOptions.useDefineForClassFields ?? true;\n }\n\n if (options?.tscCompatible && compilerOptions.strict) {\n compilerOptions.noImplicitAny = compilerOptions.noImplicitAny ?? true;\n compilerOptions.noImplicitThis = compilerOptions.noImplicitThis ?? true;\n compilerOptions.strictNullChecks = compilerOptions.strictNullChecks ?? true;\n compilerOptions.strictFunctionTypes = compilerOptions.strictFunctionTypes ?? true;\n compilerOptions.strictBindCallApply = compilerOptions.strictBindCallApply ?? true;\n compilerOptions.strictPropertyInitialization = compilerOptions.strictPropertyInitialization ?? true;\n compilerOptions.alwaysStrict = compilerOptions.alwaysStrict ?? true;\n compilerOptions.useUnknownInCatchVariables = compilerOptions.useUnknownInCatchVariables ?? true;\n }\n\n if (options?.tscCompatible && compilerOptions.isolatedModules) {\n compilerOptions.preserveConstEnums = compilerOptions.preserveConstEnums ?? true;\n }\n\n if (options?.tscCompatible && compilerOptions.esModuleInterop) {\n compilerOptions.allowSyntheticDefaultImports = compilerOptions.allowSyntheticDefaultImports ?? true;\n }\n\n if (options?.tscCompatible && compilerOptions.target === \"esnext\") {\n compilerOptions.useDefineForClassFields = compilerOptions.useDefineForClassFields ?? true;\n }\n } else {\n config.compilerOptions = {};\n }\n\n if (config.files) {\n config.files = config.files.map((element) => normalizePath(element));\n }\n\n if (config.include) {\n config.include = config.include.map((element) => normalize(element));\n }\n\n if (config.watchOptions) {\n const { watchOptions } = config;\n\n if (watchOptions.excludeDirectories) {\n watchOptions.excludeDirectories = watchOptions.excludeDirectories.map((excludePath) => resolve(directoryPath, excludePath));\n }\n }\n\n return config;\n};\n\nconst readTsConfig = (tsconfigPath: string, options?: Options): TsConfigJsonResolved => internalParseTsConfig(tsconfigPath, options);\n\nexport default readTsConfig;\n","/**\n * A modified version of `resolveExtendsPath` from `https://github.com/privatenumber/get-tsconfig/blob/develop/src/parse-tsconfig/resolve-extends-path.ts`\n *\n * MIT License\n * Copyright (c) Hiroki Osame <hiroki.osame@gmail.com>\n */\nimport { existsSync, statSync } from \"node:fs\";\nimport Module from \"node:module\";\nimport { isAbsolute, join, resolve } from \"node:path\";\n\nimport { findUpSync, readFileSync } from \"@visulima/fs\";\nimport { parse } from \"jsonc-parser\";\nimport type { PathConditions } from \"resolve-pkg-maps\";\nimport { resolveExports } from \"resolve-pkg-maps\";\nimport type { PackageJson } from \"type-fest\";\n\nimport type { Cache } from \"../types\";\n\nconst readJsonc = (jsonPath: string) => parse(readFileSync(jsonPath) as string) as unknown;\n\nconst getPnpApi = () => {\n const { findPnpApi } = Module;\n\n // https://yarnpkg.com/advanced/pnpapi/#requirepnpapi\n return findPnpApi?.(process.cwd());\n};\n\nconst resolveFromPackageJsonPath = (packageJsonPath: string, subpath: string, ignoreExports?: boolean, cache?: Cache<string>) => {\n const cacheKey = `resolveFromPackageJsonPath:${packageJsonPath}:${subpath}:${ignoreExports}`;\n\n if (cache?.has(cacheKey)) {\n return cache.get(cacheKey);\n }\n\n const packageJson = readJsonc(packageJsonPath);\n\n if (!packageJson) {\n return undefined;\n }\n\n let resolvedPath = subpath || \"tsconfig.json\";\n\n if (!ignoreExports && (packageJson as PackageJson).exports) {\n try {\n const [resolvedExport] = resolveExports((packageJson as PackageJson).exports as PathConditions, subpath, [\"require\", \"types\"]);\n\n resolvedPath = resolvedExport as string;\n } catch {\n // Block\n return false;\n }\n } else if (!subpath && (packageJson as PackageJson).tsconfig) {\n resolvedPath = (packageJson as PackageJson).tsconfig as string;\n }\n\n resolvedPath = join(packageJsonPath, \"..\", resolvedPath);\n\n cache?.set(cacheKey, resolvedPath);\n\n return resolvedPath;\n};\n\nconst PACKAGE_JSON = \"package.json\";\nconst TS_CONFIG_JSON = \"tsconfig.json\";\n\n// eslint-disable-next-line sonarjs/cognitive-complexity\nconst resolveExtendsPath = (requestedPath: string, directoryPath: string, cache?: Cache<string>): string | undefined => {\n let filePath = requestedPath;\n\n if (requestedPath === \"..\") {\n filePath = join(filePath, TS_CONFIG_JSON);\n }\n\n if (requestedPath.startsWith(\".\")) {\n filePath = resolve(directoryPath, filePath);\n }\n\n if (isAbsolute(filePath)) {\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (existsSync(filePath)) {\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (statSync(filePath).isFile()) {\n return filePath;\n }\n } else if (!filePath.endsWith(\".json\")) {\n const jsonPath = `${filePath}.json`;\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (existsSync(jsonPath)) {\n return jsonPath;\n }\n }\n\n return undefined;\n }\n\n const [orgOrName, ...remaining] = requestedPath.split(\"/\");\n const packageName = ((orgOrName as string).startsWith(\"@\") ? `${orgOrName}/${remaining.shift()}` : orgOrName) as string;\n const subpath = remaining.join(\"/\");\n\n const pnpApi = getPnpApi();\n\n if (pnpApi) {\n const { resolveRequest: resolveWithPnp } = pnpApi;\n\n try {\n if (packageName === requestedPath) {\n const packageJsonPath = resolveWithPnp(join(packageName, PACKAGE_JSON), directoryPath);\n\n if (packageJsonPath) {\n const resolvedPath = resolveFromPackageJsonPath(packageJsonPath, subpath, false, cache);\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (resolvedPath && existsSync(resolvedPath)) {\n return resolvedPath;\n }\n }\n } else {\n let resolved: string | null;\n\n try {\n resolved = resolveWithPnp(requestedPath, directoryPath, { extensions: [\".json\"] });\n } catch {\n resolved = resolveWithPnp(join(requestedPath, TS_CONFIG_JSON), directoryPath);\n }\n\n if (resolved) {\n return resolved;\n }\n }\n } catch {\n /* empty */\n }\n }\n\n const packagePath = findUpSync(\n (directory) => {\n const path = join(directory, \"node_modules\", packageName);\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (existsSync(path)) {\n return join(\"node_modules\", packageName);\n }\n\n return undefined;\n },\n {\n cwd: directoryPath,\n type: \"directory\",\n },\n );\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (!packagePath || !statSync(packagePath).isDirectory()) {\n return undefined;\n }\n\n const packageJsonPath = join(packagePath, PACKAGE_JSON);\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (existsSync(packageJsonPath)) {\n const resolvedPath = resolveFromPackageJsonPath(packageJsonPath, subpath, false, cache);\n\n // Blocked\n if (resolvedPath === false) {\n return undefined;\n }\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (resolvedPath && existsSync(resolvedPath) && statSync(resolvedPath).isFile()) {\n return resolvedPath;\n }\n }\n\n const fullPackagePath = join(packagePath, subpath);\n const jsonExtension = fullPackagePath.endsWith(\".json\");\n\n if (!jsonExtension) {\n const fullPackagePathWithJson = `${fullPackagePath}.json`;\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (existsSync(fullPackagePathWithJson)) {\n return fullPackagePathWithJson;\n }\n }\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (!existsSync(fullPackagePath)) {\n return undefined;\n }\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (statSync(fullPackagePath).isDirectory()) {\n const fullPackageJsonPath = join(fullPackagePath, PACKAGE_JSON);\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (existsSync(fullPackageJsonPath)) {\n const resolvedPath = resolveFromPackageJsonPath(fullPackageJsonPath, \"\", true, cache);\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (resolvedPath && existsSync(resolvedPath)) {\n return resolvedPath;\n }\n }\n\n const tsconfigPath = join(fullPackagePath, TS_CONFIG_JSON);\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (existsSync(tsconfigPath)) {\n return tsconfigPath;\n }\n } else if (jsonExtension) {\n return fullPackagePath;\n }\n\n return undefined;\n};\n\nexport default resolveExtendsPath;\n"]}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var chunkKSXRMTAQ_cjs = require('./chunk-KSXRMTAQ.cjs');
|
|
4
|
+
|
|
5
|
+
var t=class extends Error{constructor(n,r){if(typeof n=="string"&&(n=[n]),n.length===0){super("Package was not found.");return}if(r===void 0)try{r=chunkKSXRMTAQ_cjs.d().packageManager;}catch{}r===void 0&&(r="npm"),super(`Package '${n.join(" ")}' was not found. Please install it using '${r} install ${n.join(" ")}'`);}get code(){return "PACKAGE_NOT_FOUND"}set code(n){throw new Error("Cannot overwrite code PACKAGE_NOT_FOUND")}get name(){return "PackageNotFoundError"}set name(n){throw new Error("Cannot overwrite name of PackageNotFoundError")}},d=t;
|
|
6
|
+
|
|
7
|
+
exports.a = d;
|
|
8
|
+
//# sourceMappingURL=out.js.map
|
|
9
|
+
//# sourceMappingURL=chunk-DNYCFU7L.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/error/package-not-found-error.ts"],"names":["PackageNotFoundError","packageName","packageManager","findPackageManagerSync","_name","package_not_found_error_default"],"mappings":"yCAKA,IAAMA,EAAN,cAAmC,KAAM,CAK9B,YAAYC,EAAgCC,EAAyB,CAMxE,GALI,OAAOD,GAAgB,WAEvBA,EAAc,CAACA,CAAW,GAG1BA,EAAY,SAAW,EAAG,CAC1B,MAAM,wBAAwB,EAC9B,MACJ,CAEA,GAAIC,IAAmB,OACnB,GAAI,CAIAA,EAHqBC,EAAuB,EAGd,cAClC,MAAQ,CAER,CAGAD,IAAmB,SAEnBA,EAAiB,OAGrB,MAAM,YAAYD,EAAY,KAAK,GAAG,CAAC,6CAA6CC,CAAc,YAAYD,EAAY,KAAK,GAAG,CAAC,GAAG,CAC1I,CAGA,IAAW,MAAe,CACtB,MAAO,mBACX,CAGA,IAAW,KAAKG,EAAO,CACnB,MAAM,IAAI,MAAM,yCAAyC,CAC7D,CAGA,IAAoB,MAAe,CAC/B,MAAO,sBACX,CAGA,IAAoB,KAAKA,EAAO,CAC5B,MAAM,IAAI,MAAM,+CAA+C,CACnE,CACJ,EAEOC,EAAQL","sourcesContent":["import { findPackageManagerSync } from \"../package-manager\";\n\n/**\n * Error thrown when a package was not found.\n */\nclass PackageNotFoundError extends Error {\n /**\n * @param {string} packageName - The name of the package that was not found.\n * @param {string} packageManager - The package manager used to install the package.\n */\n public constructor(packageName: string[] | string, packageManager?: string) {\n if (typeof packageName === \"string\") {\n // eslint-disable-next-line no-param-reassign\n packageName = [packageName];\n }\n\n if (packageName.length === 0) {\n super(\"Package was not found.\");\n return;\n }\n\n if (packageManager === undefined) {\n try {\n const foundManager = findPackageManagerSync();\n\n // eslint-disable-next-line no-param-reassign\n packageManager = foundManager.packageManager;\n } catch {\n // Empty\n }\n }\n\n if (packageManager === undefined) {\n // eslint-disable-next-line no-param-reassign\n packageManager = \"npm\";\n }\n\n super(`Package '${packageName.join(\" \")}' was not found. Please install it using '${packageManager} install ${packageName.join(\" \")}'`);\n }\n\n // eslint-disable-next-line class-methods-use-this,@typescript-eslint/class-literal-property-style\n public get code(): string {\n return \"PACKAGE_NOT_FOUND\";\n }\n\n // eslint-disable-next-line class-methods-use-this,@typescript-eslint/explicit-module-boundary-types\n public set code(_name) {\n throw new Error(\"Cannot overwrite code PACKAGE_NOT_FOUND\");\n }\n\n // eslint-disable-next-line class-methods-use-this,@typescript-eslint/class-literal-property-style\n public override get name(): string {\n return \"PackageNotFoundError\";\n }\n\n // eslint-disable-next-line class-methods-use-this,@typescript-eslint/explicit-module-boundary-types\n public override set name(_name) {\n throw new Error(\"Cannot overwrite name of PackageNotFoundError\");\n }\n}\n\nexport default PackageNotFoundError;\n"]}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { c } from './chunk-
|
|
1
|
+
import { c } from './chunk-44SW4DFI.js';
|
|
2
2
|
import { existsSync, readFileSync } from 'node:fs';
|
|
3
3
|
import { findUp, readJson } from '@visulima/fs';
|
|
4
4
|
import { NotFoundError } from '@visulima/fs/error';
|
|
@@ -8,4 +8,4 @@ var x=async n=>{let a=await findUp(["lerna.json","turbo.json"],{type:"file",...n
|
|
|
8
8
|
|
|
9
9
|
export { x as a };
|
|
10
10
|
//# sourceMappingURL=out.js.map
|
|
11
|
-
//# sourceMappingURL=chunk-
|
|
11
|
+
//# sourceMappingURL=chunk-GMIFPTPB.js.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a, b } from './chunk-
|
|
1
|
+
import { a, b } from './chunk-44SW4DFI.js';
|
|
2
2
|
import { existsSync } from 'node:fs';
|
|
3
3
|
import { findUp, findUpSync, readJsonSync } from '@visulima/fs';
|
|
4
4
|
import { dirname, join } from 'pathe';
|
|
@@ -7,4 +7,4 @@ var g=t=>{if(existsSync(join(t,"package.json"))){let n=readJsonSync(join(t,"pack
|
|
|
7
7
|
|
|
8
8
|
export { P as a, J as b };
|
|
9
9
|
//# sourceMappingURL=out.js.map
|
|
10
|
-
//# sourceMappingURL=chunk-
|
|
10
|
+
//# sourceMappingURL=chunk-I3QTPGJY.js.map
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var chunk6KT7465D_cjs = require('./chunk-6KT7465D.cjs');
|
|
4
|
+
var child_process = require('child_process');
|
|
5
|
+
var fs$1 = require('fs');
|
|
6
|
+
var fs = require('@visulima/fs');
|
|
7
|
+
var error = require('@visulima/fs/error');
|
|
8
|
+
var pathe = require('pathe');
|
|
9
|
+
|
|
10
|
+
var o=["yarn.lock","package-lock.json","pnpm-lock.yaml","npm-shrinkwrap.json","bun.lockb"],m=a=>{let n;if(o.forEach(r=>{!n&&fs$1.existsSync(pathe.join(a,r))&&(n=pathe.join(a,r));}),n)return n;let e=pathe.join(a,"package.json");if(fs$1.existsSync(e)&&chunk6KT7465D_cjs.e(fs$1.readFileSync(e,"utf8")).packageManager!==void 0)return e},f=a=>{if(!a)throw new error.NotFoundError("Could not find a package manager");if(a.endsWith("package.json")){let n=chunk6KT7465D_cjs.e(a);if(n.packageManager){let r=["npm","yarn","pnpm","bun"].find(l=>n.packageManager.startsWith(l));if(r)return {packageManager:r,path:pathe.dirname(a)}}}if(a.endsWith("yarn.lock"))return {packageManager:"yarn",path:pathe.dirname(a)};if(a.endsWith("package-lock.json")||a.endsWith("npm-shrinkwrap.json"))return {packageManager:"npm",path:pathe.dirname(a)};if(a.endsWith("pnpm-lock.yaml"))return {packageManager:"pnpm",path:pathe.dirname(a)};if(a.endsWith("bun.lockb"))return {packageManager:"bun",path:pathe.dirname(a)};throw new error.NotFoundError("Could not find a package manager")},S=async a=>{let n=await fs.findUp(o,{type:"file",...a&&{cwd:a}});if(!n)throw new Error("Could not find lock file");return n},b=a=>{let n=fs.findUpSync(o,{type:"file",...a&&{cwd:a}});if(!n)throw new Error("Could not find lock file");return n},j=async a=>{let n=await fs.findUp(m,{...a&&{cwd:a}});return f(n)},U=a=>{let n=fs.findUpSync(m,{...a&&{cwd:a}});return f(n)},W=a=>child_process.execSync(`${a} --version`).toString("utf8").trim(),L=async()=>{if(!process.env.npm_config_user_agent)return;let a=process.env.npm_config_user_agent.split(" ")[0],n=a.lastIndexOf("/"),e=a.slice(0,Math.max(0,n));return {name:e==="npminstall"?"cnpm":e,version:a.slice(Math.max(0,n+1))}};
|
|
11
|
+
|
|
12
|
+
exports.a = S;
|
|
13
|
+
exports.b = b;
|
|
14
|
+
exports.c = j;
|
|
15
|
+
exports.d = U;
|
|
16
|
+
exports.e = W;
|
|
17
|
+
exports.f = L;
|
|
18
|
+
//# sourceMappingURL=out.js.map
|
|
19
|
+
//# sourceMappingURL=chunk-KSXRMTAQ.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/package-manager.ts"],"names":["execSync","existsSync","readFileSync","findUp","findUpSync","NotFoundError","dirname","join","lockFileNames","packageMangerFindUpMatcher","directory","lockFile","lockFileName","packageJsonFilePath","parsePackageJson","findPackageManagerOnFile","foundFile","packageJson","foundPackageManager","prefix","findLockFile","cwd","filePath","findLockFileSync","findPackageManager","findPackageManagerSync","getPackageManagerVersion","name","identifyInitiatingPackageManager","pmSpec","separatorPos"],"mappings":"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","sourcesContent":["import { execSync } from \"node:child_process\";\nimport { existsSync, readFileSync } from \"node:fs\";\n\nimport { findUp, findUpSync } from \"@visulima/fs\";\nimport { NotFoundError } from \"@visulima/fs/error\";\nimport { dirname, join } from \"pathe\";\n\nimport { parsePackageJson } from \"./package-json\";\n\nconst lockFileNames = [\"yarn.lock\", \"package-lock.json\", \"pnpm-lock.yaml\", \"npm-shrinkwrap.json\", \"bun.lockb\"];\n\nconst packageMangerFindUpMatcher = (directory: string) => {\n let lockFile: string | undefined;\n\n lockFileNames.forEach((lockFileName) => {\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (!lockFile && existsSync(join(directory, lockFileName))) {\n lockFile = join(directory, lockFileName);\n }\n });\n\n if (lockFile) {\n return lockFile;\n }\n\n const packageJsonFilePath = join(directory, \"package.json\");\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (existsSync(packageJsonFilePath)) {\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n const packageJson = parsePackageJson(readFileSync(packageJsonFilePath, \"utf8\"));\n\n if (packageJson.packageManager !== undefined) {\n return packageJsonFilePath;\n }\n }\n\n return undefined;\n};\n\nconst findPackageManagerOnFile = (foundFile: string | undefined): PackageManagerResult => {\n if (!foundFile) {\n throw new NotFoundError(\"Could not find a package manager\");\n }\n\n if (foundFile.endsWith(\"package.json\")) {\n const packageJson = parsePackageJson(foundFile);\n\n if (packageJson.packageManager) {\n const packageManagerNames = [\"npm\", \"yarn\", \"pnpm\", \"bun\"] as const;\n const foundPackageManager = packageManagerNames.find((prefix) => (packageJson.packageManager as string).startsWith(prefix));\n\n if (foundPackageManager) {\n return {\n packageManager: foundPackageManager,\n path: dirname(foundFile),\n };\n }\n }\n }\n\n if (foundFile.endsWith(\"yarn.lock\")) {\n return {\n packageManager: \"yarn\",\n path: dirname(foundFile),\n };\n }\n\n if (foundFile.endsWith(\"package-lock.json\") || foundFile.endsWith(\"npm-shrinkwrap.json\")) {\n return {\n packageManager: \"npm\",\n path: dirname(foundFile),\n };\n }\n\n if (foundFile.endsWith(\"pnpm-lock.yaml\")) {\n return {\n packageManager: \"pnpm\",\n path: dirname(foundFile),\n };\n }\n\n if (foundFile.endsWith(\"bun.lockb\")) {\n return {\n packageManager: \"bun\",\n path: dirname(foundFile),\n };\n }\n\n throw new NotFoundError(\"Could not find a package manager\");\n};\n\n/**\n * An asynchronous function that finds a lock file in the specified directory or any of its parent directories.\n *\n * @param cwd - Optional. The directory path to start the search from. The type of `cwd` is part of an `Options` type,\n * specifically `URL | string`. Defaults to the current working directory.\n * @returns A `Promise` that resolves with the path of the found lock file.\n * The type of the returned promise is `Promise<string>`.\n * @throws An `Error` if no lock file is found.\n */\nexport const findLockFile = async (cwd?: URL | string): Promise<string> => {\n const filePath = await findUp(lockFileNames, {\n type: \"file\",\n ...(cwd && { cwd }),\n });\n\n if (!filePath) {\n throw new Error(\"Could not find lock file\");\n }\n\n return filePath;\n};\n\nexport const findLockFileSync = (cwd?: URL | string): string => {\n const filePath = findUpSync(lockFileNames, {\n type: \"file\",\n ...(cwd && { cwd }),\n });\n\n if (!filePath) {\n throw new Error(\"Could not find lock file\");\n }\n\n return filePath;\n};\n\nexport type PackageManager = \"bun\" | \"npm\" | \"pnpm\" | \"yarn\";\n\nexport type PackageManagerResult = {\n packageManager: PackageManager;\n path: string;\n};\n\n/**\n * An asynchronous function that finds the package manager used in a project based on the presence of lock files\n * or package.json configuration. If found, it returns the package manager and the path to the lock file or package.json.\n * Throws an error if no lock file or package.json is found.\n *\n * @param cwd - Optional. The current working directory to start the search from. The type of `cwd` is part of an `Options`\n * type, specifically `URL | string`.\n * @returns A `Promise` that resolves to an object containing the package manager and path.\n * The return type of the function is `Promise<PackageManagerResult>`.\n * @throws An `Error` if no lock file or package.json is found.\n */\nexport const findPackageManager = async (cwd?: URL | string): Promise<PackageManagerResult> => {\n const foundFile = await findUp(packageMangerFindUpMatcher, {\n ...(cwd && { cwd }),\n });\n\n return findPackageManagerOnFile(foundFile);\n};\n\n/**\n * An function that finds the package manager used in a project based on the presence of lock files\n * or package.json configuration. If found, it returns the package manager and the path to the lock file or package.json.\n * Throws an error if no lock file or package.json is found.\n *\n * @param cwd - Optional. The current working directory to start the search from. The type of `cwd` is part of an `Options`\n * type, specifically `URL | string`.\n * @returns A `Promise` that resolves to an object containing the package manager and path.\n * The return type of the function is `Promise<PackageManagerResult>`.\n * @throws An `Error` if no lock file or package.json is found.\n */\n\nexport const findPackageManagerSync = (cwd?: URL | string): PackageManagerResult => {\n const foundFile = findUpSync(packageMangerFindUpMatcher, {\n ...(cwd && { cwd }),\n });\n\n return findPackageManagerOnFile(foundFile);\n};\n\n/**\n * Function that retrieves the version of the specified package manager.\n *\n * @param name - The name of the package manager. The type of `name` is `string`.\n * @returns The version of the package manager. The return type of the function is `string`.\n */\nexport const getPackageManagerVersion = (name: string): string => execSync(`${name} --version`).toString(\"utf8\").trim();\n\n/**\n * An asynchronous function that detects what package manager executes the process.\n *\n * Supports npm, pnpm, Yarn, cnpm, and bun. And also any other package manager that sets the npm_config_user_agent env variable.\n *\n * @returns A `Promise` that resolves to an object containing the name and version of the package manager,\n * or undefined if the package manager information cannot be determined. The return type of the function\n * is `Promise<{ name: PackageManager | \"cnpm\"; version: string } | undefined>`.\n */\nexport const identifyInitiatingPackageManager = async (): Promise<\n | {\n name: PackageManager | \"cnpm\";\n version: string;\n }\n | undefined\n> => {\n if (!process.env.npm_config_user_agent) {\n return undefined;\n }\n\n const pmSpec = process.env.npm_config_user_agent.split(\" \")[0] as string;\n const separatorPos = pmSpec.lastIndexOf(\"/\");\n const name = pmSpec.slice(0, Math.max(0, separatorPos));\n\n return {\n name: name === \"npminstall\" ? \"cnpm\" : (name as PackageManager),\n version: pmSpec.slice(Math.max(0, separatorPos + 1)),\n };\n};\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/tsconfig.ts","../src/read-tsconfig.ts","../src/utils/resolve-extends-path.ts"],"names":["findUp","findUpSync","writeJson","NotFoundError","toPath","join","realpathSync","readFileSync","parse","dirname","normalize","relative","resolve","toNamespacedPath","existsSync","statSync","Module","isAbsolute","resolveExports","readJsonc","jsonPath","getPnpApi","findPnpApi","resolveFromPackageJsonPath","packageJsonPath","subpath","ignoreExports","cache","cacheKey","packageJson","resolvedPath","resolvedExport","PACKAGE_JSON","TS_CONFIG_JSON","resolveExtendsPath","requestedPath","directoryPath","filePath","orgOrName","remaining","packageName","pnpApi","resolveWithPnp","resolved","packagePath","directory","path","fullPackagePath","jsonExtension","fullPackagePathWithJson","fullPackageJsonPath","tsconfigPath","resolve_extends_path_default","implicitBaseUrlSymbol","normalizePath","resolveExtends","extendsPath","fromDirectoryPath","circularExtendsTracker","options","resolvedExtendsPath","extendsDirectoryPath","extendsConfig","internalParseTsConfig","compilerOptions","resolvePaths","property","unresolvedPath","file","realTsconfigPath","config","extendsPathList","merged","normalizedPaths","resolvedBaseUrl","relativeBaseUrl","outDir","element","watchOptions","excludePath","readTsConfig","read_tsconfig_default","TsConfigFileCache","findTsConfig","cwd","configFileName","output","findTSConfig","findTsConfigSync","findTSConfigSync","writeTsConfig","data","writeOptions","writeTSConfig"],"mappings":"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","sourcesContent":["import type { WriteJsonOptions } from \"@visulima/fs\";\nimport { findUp, findUpSync, writeJson } from \"@visulima/fs\";\nimport { NotFoundError } from \"@visulima/fs/error\";\nimport { toPath } from \"@visulima/fs/utils\";\nimport { join } from \"pathe\";\nimport type { TsConfigJson } from \"type-fest\";\n\nimport readTsConfig from \"./read-tsconfig\";\nimport type { TsConfigJsonResolved } from \"./types\";\n\ntype Options = {\n cache?: Map<string, TsConfigJsonResolved> | boolean;\n configFileName?: string;\n};\n\nconst TsConfigFileCache = new Map<string, TsConfigResult>();\n\nexport type TsConfigResult = {\n config: TsConfigJsonResolved;\n path: string;\n};\n\n/**\n * An asynchronous function that retrieves the TSConfig by searching for the \"tsconfig.json\" first,\n * second attempt is to look for the \"jsconfig.json\" file from a given current working directory.\n *\n * @param cwd - Optional. The current working directory from which to search for the \"tsconfig.json\" file.\n * The type of `cwd` is `string`.\n * @returns A `Promise` that resolves to the TSConfig result object.\n * The return type of the function is `Promise<TsConfigResult>`.\n * @throws An `Error` when the \"tsconfig.json\" file is not found.\n */\nexport const findTsConfig = async (cwd?: URL | string, options: Options = {}): Promise<TsConfigResult> => {\n const configFileName = options.configFileName ?? \"tsconfig.json\";\n\n let filePath = await findUp(configFileName, {\n ...(cwd && { cwd }),\n type: \"file\",\n });\n\n if (!filePath) {\n filePath = await findUp(\"jsconfig.json\", {\n ...(cwd && { cwd }),\n type: \"file\",\n });\n }\n\n if (!filePath) {\n throw new NotFoundError(`No such file or directory, for ${configFileName} or jsconfig.json found.`);\n }\n\n const cache = options.cache && typeof options.cache !== \"boolean\" ? options.cache : TsConfigFileCache;\n\n if (options.cache && cache.has(filePath)) {\n return cache.get(filePath) as TsConfigResult;\n }\n\n const output = {\n config: readTsConfig(filePath),\n path: filePath,\n };\n\n if (options.cache) {\n cache.set(filePath, output);\n }\n\n return output;\n};\n\n// @deprecate Please use `findTsConfig` instead.\nexport const findTSConfig = findTsConfig;\n\nexport const findTsConfigSync = (cwd?: URL | string, options: Options = {}): TsConfigResult => {\n const configFileName = options.configFileName ?? \"tsconfig.json\";\n\n let filePath = findUpSync(configFileName, {\n ...(cwd && { cwd }),\n type: \"file\",\n });\n\n if (!filePath) {\n filePath = findUpSync(\"jsconfig.json\", {\n ...(cwd && { cwd }),\n type: \"file\",\n });\n }\n\n if (!filePath) {\n throw new NotFoundError(`No such file or directory, for ${configFileName} or jsconfig.json found.`);\n }\n\n const cache = options.cache && typeof options.cache !== \"boolean\" ? options.cache : TsConfigFileCache;\n\n if (options.cache && cache.has(filePath)) {\n return cache.get(filePath) as TsConfigResult;\n }\n\n const output = {\n config: readTsConfig(filePath),\n path: filePath,\n };\n\n if (options.cache) {\n cache.set(filePath, output);\n }\n\n return output;\n};\n\n// @deprecate Please use `findTsConfigSync` instead.\nexport const findTSConfigSync = findTsConfigSync;\n\n/**\n * An asynchronous function that writes the provided TypeScript configuration object to a tsconfig.json file.\n *\n * @param tsConfig - The TypeScript configuration object to write. The type of `tsConfig` is `TsConfigJson`.\n * @param options - Optional. The write options and the current working directory. The type of `options` is an\n * intersection type of `WriteOptions` and a Record type with an optional `cwd` key of type `string`.\n * @returns A `Promise` that resolves when the tsconfig.json file has been written.\n * The return type of function is `Promise<void>`.\n */\nexport const writeTsConfig = async (data: TsConfigJson, options: WriteJsonOptions & { cwd?: URL | string } = {}): Promise<void> => {\n const { cwd, ...writeOptions } = options;\n\n const directory = toPath(options.cwd ?? process.cwd());\n\n await writeJson(join(directory, \"tsconfig.json\"), data, writeOptions);\n};\n\n// @deprecate Please use `writeTsconfig` instead.\nexport const writeTSConfig = writeTsConfig;\n","/**\n * A modified version of `readTsconfig` from `https://github.com/privatenumber/get-tsconfig/blob/develop/src/parse-tsconfig/index.ts`\n *\n * MIT License\n * Copyright (c) Hiroki Osame <hiroki.osame@gmail.com>\n */\nimport { realpathSync } from \"node:fs\";\n\nimport { readFileSync } from \"@visulima/fs\";\nimport { NotFoundError } from \"@visulima/fs/error\";\nimport { parse } from \"jsonc-parser\";\nimport { dirname, join, normalize, relative, resolve, toNamespacedPath } from \"pathe\";\nimport type { TsConfigJson } from \"type-fest\";\n\nimport type { TsConfigJsonResolved } from \"./types\";\nimport resolveExtendsPath from \"./utils/resolve-extends-path\";\n\ntype Options = {\n tscCompatible?: boolean;\n};\n\nconst implicitBaseUrlSymbol = Symbol(\"implicitBaseUrl\");\n\nconst readJsonc = (jsonPath: string) => parse(readFileSync(jsonPath) as string) as unknown;\n// eslint-disable-next-line security/detect-unsafe-regex\nconst normalizePath = (path: string): string => toNamespacedPath(/^\\.{1,2}(?:\\/.*)?$/.test(path) ? path : `./${path}`);\n\nconst resolveExtends = (extendsPath: string, fromDirectoryPath: string, circularExtendsTracker: Set<string>, options?: Options) => {\n const resolvedExtendsPath = resolveExtendsPath(extendsPath, fromDirectoryPath);\n\n if (!resolvedExtendsPath) {\n throw new NotFoundError(`No such file or directory, for '${extendsPath}' found.`);\n }\n\n if (circularExtendsTracker.has(resolvedExtendsPath)) {\n throw new Error(`Circularity detected while resolving configuration: ${resolvedExtendsPath}`);\n }\n\n circularExtendsTracker.add(resolvedExtendsPath);\n\n const extendsDirectoryPath = dirname(resolvedExtendsPath);\n // eslint-disable-next-line @typescript-eslint/no-use-before-define\n const extendsConfig = internalParseTsConfig(resolvedExtendsPath, options, circularExtendsTracker);\n\n delete extendsConfig.references;\n\n const { compilerOptions } = extendsConfig;\n\n if (compilerOptions) {\n const resolvePaths = [\"baseUrl\", \"outDir\"] as const;\n\n // eslint-disable-next-line no-loops/no-loops,no-restricted-syntax\n for (const property of resolvePaths) {\n // eslint-disable-next-line security/detect-object-injection\n const unresolvedPath = compilerOptions[property];\n\n if (unresolvedPath) {\n // eslint-disable-next-line security/detect-object-injection\n compilerOptions[property] = relative(fromDirectoryPath, join(extendsDirectoryPath, unresolvedPath)).replaceAll(\"\\\\\", \"/\") || \"./\";\n }\n }\n }\n\n if (extendsConfig.files) {\n extendsConfig.files = extendsConfig.files.map((file) => relative(fromDirectoryPath, join(extendsDirectoryPath, file)));\n }\n\n if (extendsConfig.include) {\n extendsConfig.include = extendsConfig.include.map((file) => relative(fromDirectoryPath, join(extendsDirectoryPath, file)));\n }\n\n if (extendsConfig.exclude) {\n extendsConfig.exclude = extendsConfig.exclude.map((file) => relative(fromDirectoryPath, join(extendsDirectoryPath, file)));\n }\n\n return extendsConfig;\n};\n\n// eslint-disable-next-line sonarjs/cognitive-complexity\nconst internalParseTsConfig = (tsconfigPath: string, options?: Options, circularExtendsTracker = new Set<string>()): TsConfigJsonResolved => {\n let realTsconfigPath: string;\n\n try {\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n realTsconfigPath = realpathSync(tsconfigPath) as string;\n } catch {\n throw new Error(`Cannot resolve tsconfig at path: ${tsconfigPath}`);\n }\n\n /**\n * Decided not to cache the TsConfigJsonResolved object because it's\n * mutable.\n *\n * Note how `resolveExtends` can call `readTsconfig` rescursively\n * and actually mutates the object. It can also be mutated in\n * user-land.\n *\n * By only caching fs results, we can avoid serving mutated objects\n */\n let config: TsConfigJson = readJsonc(realTsconfigPath) || {};\n\n if (typeof config !== \"object\") {\n throw new SyntaxError(`Failed to parse tsconfig at: ${tsconfigPath}`);\n }\n\n const directoryPath = dirname(realTsconfigPath);\n\n if (config.compilerOptions) {\n const { compilerOptions } = config;\n if (compilerOptions.paths && !compilerOptions.baseUrl) {\n type WithImplicitBaseUrl = TsConfigJson.CompilerOptions & {\n [implicitBaseUrlSymbol]: string;\n };\n // eslint-disable-next-line security/detect-object-injection\n (compilerOptions as WithImplicitBaseUrl)[implicitBaseUrlSymbol] = directoryPath;\n }\n }\n\n if (config.extends) {\n const extendsPathList = Array.isArray(config.extends) ? config.extends : [config.extends];\n\n delete config.extends;\n\n // eslint-disable-next-line no-loops/no-loops,no-restricted-syntax,etc/no-assign-mutated-array\n for (const extendsPath of extendsPathList.reverse()) {\n const extendsConfig = resolveExtends(extendsPath, directoryPath, new Set(circularExtendsTracker), options);\n const merged = {\n ...extendsConfig,\n ...config,\n\n compilerOptions: {\n ...extendsConfig.compilerOptions,\n ...config.compilerOptions,\n },\n };\n\n if (extendsConfig.watchOptions) {\n merged.watchOptions = {\n ...extendsConfig.watchOptions,\n ...config.watchOptions,\n };\n }\n\n config = merged;\n }\n }\n\n if (config.compilerOptions) {\n const { compilerOptions } = config;\n const normalizedPaths = [\"baseUrl\", \"rootDir\"] as const;\n\n // eslint-disable-next-line no-loops/no-loops,no-restricted-syntax\n for (const property of normalizedPaths) {\n // eslint-disable-next-line security/detect-object-injection\n const unresolvedPath = compilerOptions[property];\n\n if (unresolvedPath) {\n const resolvedBaseUrl = resolve(directoryPath, unresolvedPath);\n const relativeBaseUrl = relative(directoryPath, resolvedBaseUrl);\n\n // eslint-disable-next-line security/detect-object-injection\n compilerOptions[property] = normalizePath(relativeBaseUrl);\n }\n }\n\n const { outDir } = compilerOptions;\n\n if (outDir) {\n if (!Array.isArray(config.exclude)) {\n config.exclude = [];\n }\n\n if (!config.exclude.includes(outDir)) {\n config.exclude.push(outDir);\n }\n\n compilerOptions.outDir = normalizePath(outDir);\n }\n\n if (options?.tscCompatible && compilerOptions.module === \"node16\") {\n compilerOptions.allowSyntheticDefaultImports = compilerOptions.allowSyntheticDefaultImports ?? true;\n compilerOptions.esModuleInterop = compilerOptions.esModuleInterop ?? true;\n compilerOptions.moduleDetection = compilerOptions.moduleDetection ?? \"force\";\n compilerOptions.moduleResolution = compilerOptions.moduleResolution ?? \"node16\";\n compilerOptions.target = compilerOptions.target ?? \"es2022\";\n compilerOptions.useDefineForClassFields = compilerOptions.useDefineForClassFields ?? true;\n }\n\n if (options?.tscCompatible && compilerOptions.strict) {\n compilerOptions.noImplicitAny = compilerOptions.noImplicitAny ?? true;\n compilerOptions.noImplicitThis = compilerOptions.noImplicitThis ?? true;\n compilerOptions.strictNullChecks = compilerOptions.strictNullChecks ?? true;\n compilerOptions.strictFunctionTypes = compilerOptions.strictFunctionTypes ?? true;\n compilerOptions.strictBindCallApply = compilerOptions.strictBindCallApply ?? true;\n compilerOptions.strictPropertyInitialization = compilerOptions.strictPropertyInitialization ?? true;\n compilerOptions.alwaysStrict = compilerOptions.alwaysStrict ?? true;\n compilerOptions.useUnknownInCatchVariables = compilerOptions.useUnknownInCatchVariables ?? true;\n }\n\n if (options?.tscCompatible && compilerOptions.isolatedModules) {\n compilerOptions.preserveConstEnums = compilerOptions.preserveConstEnums ?? true;\n }\n\n if (options?.tscCompatible && compilerOptions.esModuleInterop) {\n compilerOptions.allowSyntheticDefaultImports = compilerOptions.allowSyntheticDefaultImports ?? true;\n }\n\n if (options?.tscCompatible && compilerOptions.target === \"esnext\") {\n compilerOptions.useDefineForClassFields = compilerOptions.useDefineForClassFields ?? true;\n }\n } else {\n config.compilerOptions = {};\n }\n\n if (config.files) {\n config.files = config.files.map((element) => normalizePath(element));\n }\n\n if (config.include) {\n config.include = config.include.map((element) => normalize(element));\n }\n\n if (config.watchOptions) {\n const { watchOptions } = config;\n\n if (watchOptions.excludeDirectories) {\n watchOptions.excludeDirectories = watchOptions.excludeDirectories.map((excludePath) => resolve(directoryPath, excludePath));\n }\n }\n\n return config;\n};\n\nconst readTsConfig = (tsconfigPath: string, options?: Options): TsConfigJsonResolved => internalParseTsConfig(tsconfigPath, options);\n\nexport default readTsConfig;\n","/**\n * A modified version of `resolveExtendsPath` from `https://github.com/privatenumber/get-tsconfig/blob/develop/src/parse-tsconfig/resolve-extends-path.ts`\n *\n * MIT License\n * Copyright (c) Hiroki Osame <hiroki.osame@gmail.com>\n */\nimport { existsSync, statSync } from \"node:fs\";\nimport Module from \"node:module\";\nimport { isAbsolute, join, resolve } from \"node:path\";\n\nimport { findUpSync, readFileSync } from \"@visulima/fs\";\nimport { parse } from \"jsonc-parser\";\nimport type { PathConditions } from \"resolve-pkg-maps\";\nimport { resolveExports } from \"resolve-pkg-maps\";\nimport type { PackageJson } from \"type-fest\";\n\nimport type { Cache } from \"../types\";\n\nconst readJsonc = (jsonPath: string) => parse(readFileSync(jsonPath) as string) as unknown;\n\nconst getPnpApi = () => {\n const { findPnpApi } = Module;\n\n // https://yarnpkg.com/advanced/pnpapi/#requirepnpapi\n return findPnpApi?.(process.cwd());\n};\n\nconst resolveFromPackageJsonPath = (packageJsonPath: string, subpath: string, ignoreExports?: boolean, cache?: Cache<string>) => {\n const cacheKey = `resolveFromPackageJsonPath:${packageJsonPath}:${subpath}:${ignoreExports}`;\n\n if (cache?.has(cacheKey)) {\n return cache.get(cacheKey);\n }\n\n const packageJson = readJsonc(packageJsonPath);\n\n if (!packageJson) {\n return undefined;\n }\n\n let resolvedPath = subpath || \"tsconfig.json\";\n\n if (!ignoreExports && (packageJson as PackageJson).exports) {\n try {\n const [resolvedExport] = resolveExports((packageJson as PackageJson).exports as PathConditions, subpath, [\"require\", \"types\"]);\n\n resolvedPath = resolvedExport as string;\n } catch {\n // Block\n return false;\n }\n } else if (!subpath && (packageJson as PackageJson)[\"tsconfig\"]) {\n resolvedPath = (packageJson as PackageJson)[\"tsconfig\"] as string;\n }\n\n resolvedPath = join(packageJsonPath, \"..\", resolvedPath);\n\n cache?.set(cacheKey, resolvedPath);\n\n return resolvedPath;\n};\n\nconst PACKAGE_JSON = \"package.json\";\nconst TS_CONFIG_JSON = \"tsconfig.json\";\n\n// eslint-disable-next-line sonarjs/cognitive-complexity\nconst resolveExtendsPath = (requestedPath: string, directoryPath: string, cache?: Cache<string>): string | undefined => {\n let filePath = requestedPath;\n\n if (requestedPath === \"..\") {\n filePath = join(filePath, TS_CONFIG_JSON);\n }\n\n if (requestedPath.startsWith(\".\")) {\n filePath = resolve(directoryPath, filePath);\n }\n\n if (isAbsolute(filePath)) {\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (existsSync(filePath)) {\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (statSync(filePath).isFile()) {\n return filePath;\n }\n } else if (!filePath.endsWith(\".json\")) {\n const jsonPath = `${filePath}.json`;\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (existsSync(jsonPath)) {\n return jsonPath;\n }\n }\n\n return undefined;\n }\n\n const [orgOrName, ...remaining] = requestedPath.split(\"/\");\n const packageName = ((orgOrName as string).startsWith(\"@\") ? `${orgOrName}/${remaining.shift()}` : orgOrName) as string;\n const subpath = remaining.join(\"/\");\n\n const pnpApi = getPnpApi();\n\n if (pnpApi) {\n const { resolveRequest: resolveWithPnp } = pnpApi;\n\n try {\n if (packageName === requestedPath) {\n const packageJsonPath = resolveWithPnp(join(packageName, PACKAGE_JSON), directoryPath);\n\n if (packageJsonPath) {\n const resolvedPath = resolveFromPackageJsonPath(packageJsonPath, subpath, false, cache);\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (resolvedPath && existsSync(resolvedPath)) {\n return resolvedPath;\n }\n }\n } else {\n let resolved: string | null;\n\n try {\n resolved = resolveWithPnp(requestedPath, directoryPath, { extensions: [\".json\"] });\n } catch {\n resolved = resolveWithPnp(join(requestedPath, TS_CONFIG_JSON), directoryPath);\n }\n\n if (resolved) {\n return resolved;\n }\n }\n } catch {\n /* empty */\n }\n }\n\n const packagePath = findUpSync(\n (directory) => {\n const path = join(directory, \"node_modules\", packageName);\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (existsSync(path)) {\n return join(\"node_modules\", packageName);\n }\n\n return undefined;\n },\n {\n cwd: directoryPath,\n type: \"directory\",\n },\n );\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (!packagePath || !statSync(packagePath).isDirectory()) {\n return undefined;\n }\n\n const packageJsonPath = join(packagePath, PACKAGE_JSON);\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (existsSync(packageJsonPath)) {\n const resolvedPath = resolveFromPackageJsonPath(packageJsonPath, subpath, false, cache);\n\n // Blocked\n if (resolvedPath === false) {\n return undefined;\n }\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (resolvedPath && existsSync(resolvedPath) && statSync(resolvedPath).isFile()) {\n return resolvedPath;\n }\n }\n\n const fullPackagePath = join(packagePath, subpath);\n const jsonExtension = fullPackagePath.endsWith(\".json\");\n\n if (!jsonExtension) {\n const fullPackagePathWithJson = `${fullPackagePath}.json`;\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (existsSync(fullPackagePathWithJson)) {\n return fullPackagePathWithJson;\n }\n }\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (!existsSync(fullPackagePath)) {\n return undefined;\n }\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (statSync(fullPackagePath).isDirectory()) {\n const fullPackageJsonPath = join(fullPackagePath, PACKAGE_JSON);\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (existsSync(fullPackageJsonPath)) {\n const resolvedPath = resolveFromPackageJsonPath(fullPackageJsonPath, \"\", true, cache);\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (resolvedPath && existsSync(resolvedPath)) {\n return resolvedPath;\n }\n }\n\n const tsconfigPath = join(fullPackagePath, TS_CONFIG_JSON);\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (existsSync(tsconfigPath)) {\n return tsconfigPath;\n }\n } else if (jsonExtension) {\n return fullPackagePath;\n }\n\n return undefined;\n};\n\nexport default resolveExtendsPath;\n"]}
|
|
1
|
+
{"version":3,"sources":["../src/tsconfig.ts","../src/read-tsconfig.ts","../src/utils/resolve-extends-path.ts"],"names":["findUp","findUpSync","writeJson","NotFoundError","toPath","join","realpathSync","readFileSync","parse","dirname","normalize","relative","resolve","toNamespacedPath","existsSync","statSync","Module","isAbsolute","resolveExports","readJsonc","jsonPath","getPnpApi","findPnpApi","resolveFromPackageJsonPath","packageJsonPath","subpath","ignoreExports","cache","cacheKey","packageJson","resolvedPath","resolvedExport","PACKAGE_JSON","TS_CONFIG_JSON","resolveExtendsPath","requestedPath","directoryPath","filePath","orgOrName","remaining","packageName","pnpApi","resolveWithPnp","resolved","packagePath","directory","path","fullPackagePath","jsonExtension","fullPackagePathWithJson","fullPackageJsonPath","tsconfigPath","resolve_extends_path_default","implicitBaseUrlSymbol","normalizePath","resolveExtends","extendsPath","fromDirectoryPath","circularExtendsTracker","options","resolvedExtendsPath","extendsDirectoryPath","extendsConfig","internalParseTsConfig","compilerOptions","resolvePaths","property","unresolvedPath","file","realTsconfigPath","config","extendsPathList","merged","normalizedPaths","resolvedBaseUrl","relativeBaseUrl","outDir","element","watchOptions","excludePath","readTsConfig","read_tsconfig_default","TsConfigFileCache","findTsConfig","cwd","configFileName","output","findTSConfig","findTsConfigSync","findTSConfigSync","writeTsConfig","data","writeOptions","writeTSConfig"],"mappings":"AACA,OAAS,UAAAA,EAAQ,cAAAC,EAAY,aAAAC,OAAiB,eAC9C,OAAS,iBAAAC,MAAqB,qBAC9B,OAAS,UAAAC,OAAc,qBACvB,OAAS,QAAAC,OAAY,QCErB,OAAS,gBAAAC,MAAoB,KAE7B,OAAS,gBAAAC,MAAoB,eAC7B,OAAS,iBAAAJ,MAAqB,qBAC9B,OAAS,SAAAK,MAAa,eACtB,OAAS,WAAAC,EAAS,QAAAJ,EAAM,aAAAK,EAAW,YAAAC,EAAU,WAAAC,EAAS,oBAAAC,MAAwB,QCL9E,OAAS,cAAAC,EAAY,YAAAC,MAAgB,KACrC,OAAOC,MAAY,SACnB,OAAS,cAAAC,EAAY,QAAAZ,EAAM,WAAAO,MAAe,OAE1C,OAAS,cAAAX,EAAY,gBAAAM,MAAoB,eACzC,OAAS,SAAAC,MAAa,eAEtB,OAAS,kBAAAU,MAAsB,mBAK/B,IAAMC,EAAaC,GAAqBZ,EAAMD,EAAaa,CAAQ,CAAW,EAExEC,EAAY,IAAM,CACpB,GAAM,CAAE,WAAAC,CAAW,EAAIN,EAGvB,OAAOM,IAAa,QAAQ,IAAI,CAAC,CACrC,EAEMC,EAA6B,CAACC,EAAyBC,EAAiBC,EAAyBC,IAA0B,CAC7H,IAAMC,EAAW,8BAA8BJ,CAAe,IAAIC,CAAO,IAAIC,CAAa,GAE1F,GAAIC,GAAO,IAAIC,CAAQ,EACnB,OAAOD,EAAM,IAAIC,CAAQ,EAG7B,IAAMC,EAAcV,EAAUK,CAAe,EAE7C,GAAI,CAACK,EACD,OAGJ,IAAIC,EAAeL,GAAW,gBAE9B,GAAI,CAACC,GAAkBG,EAA4B,QAC/C,GAAI,CACA,GAAM,CAACE,CAAc,EAAIb,EAAgBW,EAA4B,QAA2BJ,EAAS,CAAC,UAAW,OAAO,CAAC,EAE7HK,EAAeC,CACnB,MAAQ,CAEJ,MAAO,EACX,KACO,CAACN,GAAYI,EAA4B,WAChDC,EAAgBD,EAA4B,UAGhD,OAAAC,EAAezB,EAAKmB,EAAiB,KAAMM,CAAY,EAEvDH,GAAO,IAAIC,EAAUE,CAAY,EAE1BA,CACX,EAEME,EAAe,eACfC,EAAiB,gBAGjBC,EAAqB,CAACC,EAAuBC,EAAuBT,IAA8C,CACpH,IAAIU,EAAWF,EAUf,GARIA,IAAkB,OAClBE,EAAWhC,EAAKgC,EAAUJ,CAAc,GAGxCE,EAAc,WAAW,GAAG,IAC5BE,EAAWzB,EAAQwB,EAAeC,CAAQ,GAG1CpB,EAAWoB,CAAQ,EAAG,CAEtB,GAAIvB,EAAWuB,CAAQ,GAEnB,GAAItB,EAASsB,CAAQ,EAAE,OAAO,EAC1B,OAAOA,UAEJ,CAACA,EAAS,SAAS,OAAO,EAAG,CACpC,IAAMjB,EAAW,GAAGiB,CAAQ,QAG5B,GAAIvB,EAAWM,CAAQ,EACnB,OAAOA,CAEf,CAEA,MACJ,CAEA,GAAM,CAACkB,EAAW,GAAGC,CAAS,EAAIJ,EAAc,MAAM,GAAG,EACnDK,EAAgBF,EAAqB,WAAW,GAAG,EAAI,GAAGA,CAAS,IAAIC,EAAU,MAAM,CAAC,GAAKD,EAC7Fb,EAAUc,EAAU,KAAK,GAAG,EAE5BE,EAASpB,EAAU,EAEzB,GAAIoB,EAAQ,CACR,GAAM,CAAE,eAAgBC,CAAe,EAAID,EAE3C,GAAI,CACA,GAAID,IAAgBL,EAAe,CAC/B,IAAMX,EAAkBkB,EAAerC,EAAKmC,EAAaR,CAAY,EAAGI,CAAa,EAErF,GAAIZ,EAAiB,CACjB,IAAMM,EAAeP,EAA2BC,EAAiBC,EAAS,GAAOE,CAAK,EAGtF,GAAIG,GAAgBhB,EAAWgB,CAAY,EACvC,OAAOA,CAEf,CACJ,KAAO,CACH,IAAIa,EAEJ,GAAI,CACAA,EAAWD,EAAeP,EAAeC,EAAe,CAAE,WAAY,CAAC,OAAO,CAAE,CAAC,CACrF,MAAQ,CACJO,EAAWD,EAAerC,EAAK8B,EAAeF,CAAc,EAAGG,CAAa,CAChF,CAEA,GAAIO,EACA,OAAOA,CAEf,CACJ,MAAQ,CAER,CACJ,CAEA,IAAMC,EAAc3C,EACf4C,GAAc,CACX,IAAMC,EAAOzC,EAAKwC,EAAW,eAAgBL,CAAW,EAGxD,GAAI1B,EAAWgC,CAAI,EACf,OAAOzC,EAAK,eAAgBmC,CAAW,CAI/C,EACA,CACI,IAAKJ,EACL,KAAM,WACV,CACJ,EAGA,GAAI,CAACQ,GAAe,CAAC7B,EAAS6B,CAAW,EAAE,YAAY,EACnD,OAGJ,IAAMpB,EAAkBnB,EAAKuC,EAAaZ,CAAY,EAGtD,GAAIlB,EAAWU,CAAe,EAAG,CAC7B,IAAMM,EAAeP,EAA2BC,EAAiBC,EAAS,GAAOE,CAAK,EAGtF,GAAIG,IAAiB,GACjB,OAIJ,GAAIA,GAAgBhB,EAAWgB,CAAY,GAAKf,EAASe,CAAY,EAAE,OAAO,EAC1E,OAAOA,CAEf,CAEA,IAAMiB,EAAkB1C,EAAKuC,EAAanB,CAAO,EAC3CuB,EAAgBD,EAAgB,SAAS,OAAO,EAEtD,GAAI,CAACC,EAAe,CAChB,IAAMC,EAA0B,GAAGF,CAAe,QAGlD,GAAIjC,EAAWmC,CAAuB,EAClC,OAAOA,CAEf,CAGA,GAAKnC,EAAWiC,CAAe,GAK/B,GAAIhC,EAASgC,CAAe,EAAE,YAAY,EAAG,CACzC,IAAMG,EAAsB7C,EAAK0C,EAAiBf,CAAY,EAG9D,GAAIlB,EAAWoC,CAAmB,EAAG,CACjC,IAAMpB,EAAeP,EAA2B2B,EAAqB,GAAI,GAAMvB,CAAK,EAGpF,GAAIG,GAAgBhB,EAAWgB,CAAY,EACvC,OAAOA,CAEf,CAEA,IAAMqB,EAAe9C,EAAK0C,EAAiBd,CAAc,EAGzD,GAAInB,EAAWqC,CAAY,EACvB,OAAOA,CAEf,SAAWH,EACP,OAAOD,EAIf,EAEOK,EAAQlB,EDrMf,IAAMmB,EAAwB,OAAO,iBAAiB,EAEhDlC,EAAaC,GAAqBZ,EAAMD,EAAaa,CAAQ,CAAW,EAExEkC,EAAiBR,GAAyBjC,EAAiB,qBAAqB,KAAKiC,CAAI,EAAIA,EAAO,KAAKA,CAAI,EAAE,EAE/GS,EAAiB,CAACC,EAAqBC,EAA2BC,EAAqCC,IAAsB,CAC/H,IAAMC,EAAsBR,EAAmBI,EAAaC,CAAiB,EAE7E,GAAI,CAACG,EACD,MAAM,IAAIzD,EAAc,mCAAmCqD,CAAW,UAAU,EAGpF,GAAIE,EAAuB,IAAIE,CAAmB,EAC9C,MAAM,IAAI,MAAM,uDAAuDA,CAAmB,EAAE,EAGhGF,EAAuB,IAAIE,CAAmB,EAE9C,IAAMC,EAAuBpD,EAAQmD,CAAmB,EAElDE,EAAgBC,EAAsBH,EAAqBD,EAASD,CAAsB,EAEhG,OAAOI,EAAc,WAErB,GAAM,CAAE,gBAAAE,CAAgB,EAAIF,EAE5B,GAAIE,EAAiB,CACjB,IAAMC,EAAe,CAAC,UAAW,QAAQ,EAGzC,QAAWC,KAAYD,EAAc,CAEjC,IAAME,EAAiBH,EAAgBE,CAAQ,EAE3CC,IAEAH,EAAgBE,CAAQ,EAAIvD,EAAS8C,EAAmBpD,EAAKwD,EAAsBM,CAAc,CAAC,EAAE,WAAW,KAAM,GAAG,GAAK,KAErI,CACJ,CAEA,OAAIL,EAAc,QACdA,EAAc,MAAQA,EAAc,MAAM,IAAKM,GAASzD,EAAS8C,EAAmBpD,EAAKwD,EAAsBO,CAAI,CAAC,CAAC,GAGrHN,EAAc,UACdA,EAAc,QAAUA,EAAc,QAAQ,IAAKM,GAASzD,EAAS8C,EAAmBpD,EAAKwD,EAAsBO,CAAI,CAAC,CAAC,GAGzHN,EAAc,UACdA,EAAc,QAAUA,EAAc,QAAQ,IAAKM,GAASzD,EAAS8C,EAAmBpD,EAAKwD,EAAsBO,CAAI,CAAC,CAAC,GAGtHN,CACX,EAGMC,EAAwB,CAACZ,EAAsBQ,EAAmBD,EAAyB,IAAI,MAAwC,CACzI,IAAIW,EAEJ,GAAI,CAEAA,EAAmB/D,EAAa6C,CAAY,CAChD,MAAQ,CACJ,MAAM,IAAI,MAAM,oCAAoCA,CAAY,EAAE,CACtE,CAYA,IAAImB,EAAuBnD,EAAUkD,CAAgB,GAAK,CAAC,EAE3D,GAAI,OAAOC,GAAW,SAClB,MAAM,IAAI,YAAY,gCAAgCnB,CAAY,EAAE,EAGxE,IAAMf,EAAgB3B,EAAQ4D,CAAgB,EAE9C,GAAIC,EAAO,gBAAiB,CACxB,GAAM,CAAE,gBAAAN,CAAgB,EAAIM,EACxBN,EAAgB,OAAS,CAACA,EAAgB,UAKzCA,EAAwCX,CAAqB,EAAIjB,EAE1E,CAEA,GAAIkC,EAAO,QAAS,CAChB,IAAMC,EAAkB,MAAM,QAAQD,EAAO,OAAO,EAAIA,EAAO,QAAU,CAACA,EAAO,OAAO,EAExF,OAAOA,EAAO,QAGd,QAAWd,KAAee,EAAgB,QAAQ,EAAG,CACjD,IAAMT,EAAgBP,EAAeC,EAAapB,EAAe,IAAI,IAAIsB,CAAsB,EAAGC,CAAO,EACnGa,EAAS,CACX,GAAGV,EACH,GAAGQ,EAEH,gBAAiB,CACb,GAAGR,EAAc,gBACjB,GAAGQ,EAAO,eACd,CACJ,EAEIR,EAAc,eACdU,EAAO,aAAe,CAClB,GAAGV,EAAc,aACjB,GAAGQ,EAAO,YACd,GAGJA,EAASE,CACb,CACJ,CAEA,GAAIF,EAAO,gBAAiB,CACxB,GAAM,CAAE,gBAAAN,CAAgB,EAAIM,EACtBG,EAAkB,CAAC,UAAW,SAAS,EAG7C,QAAWP,KAAYO,EAAiB,CAEpC,IAAMN,EAAiBH,EAAgBE,CAAQ,EAE/C,GAAIC,EAAgB,CAChB,IAAMO,EAAkB9D,EAAQwB,EAAe+B,CAAc,EACvDQ,EAAkBhE,EAASyB,EAAesC,CAAe,EAG/DV,EAAgBE,CAAQ,EAAIZ,EAAcqB,CAAe,CAC7D,CACJ,CAEA,GAAM,CAAE,OAAAC,CAAO,EAAIZ,EAEfY,IACK,MAAM,QAAQN,EAAO,OAAO,IAC7BA,EAAO,QAAU,CAAC,GAGjBA,EAAO,QAAQ,SAASM,CAAM,GAC/BN,EAAO,QAAQ,KAAKM,CAAM,EAG9BZ,EAAgB,OAASV,EAAcsB,CAAM,GAG7CjB,GAAS,eAAiBK,EAAgB,SAAW,WACrDA,EAAgB,6BAA+BA,EAAgB,8BAAgC,GAC/FA,EAAgB,gBAAkBA,EAAgB,iBAAmB,GACrEA,EAAgB,gBAAkBA,EAAgB,iBAAmB,QACrEA,EAAgB,iBAAmBA,EAAgB,kBAAoB,SACvEA,EAAgB,OAASA,EAAgB,QAAU,SACnDA,EAAgB,wBAA0BA,EAAgB,yBAA2B,IAGrFL,GAAS,eAAiBK,EAAgB,SAC1CA,EAAgB,cAAgBA,EAAgB,eAAiB,GACjEA,EAAgB,eAAiBA,EAAgB,gBAAkB,GACnEA,EAAgB,iBAAmBA,EAAgB,kBAAoB,GACvEA,EAAgB,oBAAsBA,EAAgB,qBAAuB,GAC7EA,EAAgB,oBAAsBA,EAAgB,qBAAuB,GAC7EA,EAAgB,6BAA+BA,EAAgB,8BAAgC,GAC/FA,EAAgB,aAAeA,EAAgB,cAAgB,GAC/DA,EAAgB,2BAA6BA,EAAgB,4BAA8B,IAG3FL,GAAS,eAAiBK,EAAgB,kBAC1CA,EAAgB,mBAAqBA,EAAgB,oBAAsB,IAG3EL,GAAS,eAAiBK,EAAgB,kBAC1CA,EAAgB,6BAA+BA,EAAgB,8BAAgC,IAG/FL,GAAS,eAAiBK,EAAgB,SAAW,WACrDA,EAAgB,wBAA0BA,EAAgB,yBAA2B,GAE7F,MACIM,EAAO,gBAAkB,CAAC,EAW9B,GARIA,EAAO,QACPA,EAAO,MAAQA,EAAO,MAAM,IAAKO,GAAYvB,EAAcuB,CAAO,CAAC,GAGnEP,EAAO,UACPA,EAAO,QAAUA,EAAO,QAAQ,IAAKO,GAAYnE,EAAUmE,CAAO,CAAC,GAGnEP,EAAO,aAAc,CACrB,GAAM,CAAE,aAAAQ,CAAa,EAAIR,EAErBQ,EAAa,qBACbA,EAAa,mBAAqBA,EAAa,mBAAmB,IAAKC,GAAgBnE,EAAQwB,EAAe2C,CAAW,CAAC,EAElI,CAEA,OAAOT,CACX,EAEMU,GAAe,CAAC7B,EAAsBQ,IAA4CI,EAAsBZ,EAAcQ,CAAO,EAE5HsB,EAAQD,GD5Nf,IAAME,EAAoB,IAAI,IAiBjBC,GAAe,MAAOC,EAAoBzB,EAAmB,CAAC,IAA+B,CACtG,IAAM0B,EAAiB1B,EAAQ,gBAAkB,gBAE7CtB,EAAW,MAAMrC,EAAOqF,EAAgB,CACxC,GAAID,GAAO,CAAE,IAAAA,CAAI,EACjB,KAAM,MACV,CAAC,EASD,GAPK/C,IACDA,EAAW,MAAMrC,EAAO,gBAAiB,CACrC,GAAIoF,GAAO,CAAE,IAAAA,CAAI,EACjB,KAAM,MACV,CAAC,GAGD,CAAC/C,EACD,MAAM,IAAIlC,EAAc,kCAAkCkF,CAAc,0BAA0B,EAGtG,IAAM1D,EAAQgC,EAAQ,OAAS,OAAOA,EAAQ,OAAU,UAAYA,EAAQ,MAAQuB,EAEpF,GAAIvB,EAAQ,OAAShC,EAAM,IAAIU,CAAQ,EACnC,OAAOV,EAAM,IAAIU,CAAQ,EAG7B,IAAMiD,EAAS,CACX,OAAQL,EAAa5C,CAAQ,EAC7B,KAAMA,CACV,EAEA,OAAIsB,EAAQ,OACRhC,EAAM,IAAIU,EAAUiD,CAAM,EAGvBA,CACX,EAGaC,GAAeJ,GAEfK,GAAmB,CAACJ,EAAoBzB,EAAmB,CAAC,IAAsB,CAC3F,IAAM0B,EAAiB1B,EAAQ,gBAAkB,gBAE7CtB,EAAWpC,EAAWoF,EAAgB,CACtC,GAAID,GAAO,CAAE,IAAAA,CAAI,EACjB,KAAM,MACV,CAAC,EASD,GAPK/C,IACDA,EAAWpC,EAAW,gBAAiB,CACnC,GAAImF,GAAO,CAAE,IAAAA,CAAI,EACjB,KAAM,MACV,CAAC,GAGD,CAAC/C,EACD,MAAM,IAAIlC,EAAc,kCAAkCkF,CAAc,0BAA0B,EAGtG,IAAM1D,EAAQgC,EAAQ,OAAS,OAAOA,EAAQ,OAAU,UAAYA,EAAQ,MAAQuB,EAEpF,GAAIvB,EAAQ,OAAShC,EAAM,IAAIU,CAAQ,EACnC,OAAOV,EAAM,IAAIU,CAAQ,EAG7B,IAAMiD,EAAS,CACX,OAAQL,EAAa5C,CAAQ,EAC7B,KAAMA,CACV,EAEA,OAAIsB,EAAQ,OACRhC,EAAM,IAAIU,EAAUiD,CAAM,EAGvBA,CACX,EAGaG,GAAmBD,GAWnBE,GAAgB,MAAOC,EAAoBhC,EAAqD,CAAC,IAAqB,CAC/H,GAAM,CAAE,IAAAyB,EAAK,GAAGQ,CAAa,EAAIjC,EAE3Bd,EAAYzC,GAAOuD,EAAQ,KAAO,QAAQ,IAAI,CAAC,EAErD,MAAMzD,GAAUG,GAAKwC,EAAW,eAAe,EAAG8C,EAAMC,CAAY,CACxE,EAGaC,GAAgBH","sourcesContent":["import type { WriteJsonOptions } from \"@visulima/fs\";\nimport { findUp, findUpSync, writeJson } from \"@visulima/fs\";\nimport { NotFoundError } from \"@visulima/fs/error\";\nimport { toPath } from \"@visulima/fs/utils\";\nimport { join } from \"pathe\";\nimport type { TsConfigJson } from \"type-fest\";\n\nimport readTsConfig from \"./read-tsconfig\";\nimport type { TsConfigJsonResolved } from \"./types\";\n\ntype Options = {\n cache?: Map<string, TsConfigJsonResolved> | boolean;\n configFileName?: string;\n};\n\nconst TsConfigFileCache = new Map<string, TsConfigResult>();\n\nexport type TsConfigResult = {\n config: TsConfigJsonResolved;\n path: string;\n};\n\n/**\n * An asynchronous function that retrieves the TSConfig by searching for the \"tsconfig.json\" first,\n * second attempt is to look for the \"jsconfig.json\" file from a given current working directory.\n *\n * @param cwd - Optional. The current working directory from which to search for the \"tsconfig.json\" file.\n * The type of `cwd` is `string`.\n * @returns A `Promise` that resolves to the TSConfig result object.\n * The return type of the function is `Promise<TsConfigResult>`.\n * @throws An `Error` when the \"tsconfig.json\" file is not found.\n */\nexport const findTsConfig = async (cwd?: URL | string, options: Options = {}): Promise<TsConfigResult> => {\n const configFileName = options.configFileName ?? \"tsconfig.json\";\n\n let filePath = await findUp(configFileName, {\n ...(cwd && { cwd }),\n type: \"file\",\n });\n\n if (!filePath) {\n filePath = await findUp(\"jsconfig.json\", {\n ...(cwd && { cwd }),\n type: \"file\",\n });\n }\n\n if (!filePath) {\n throw new NotFoundError(`No such file or directory, for ${configFileName} or jsconfig.json found.`);\n }\n\n const cache = options.cache && typeof options.cache !== \"boolean\" ? options.cache : TsConfigFileCache;\n\n if (options.cache && cache.has(filePath)) {\n return cache.get(filePath) as TsConfigResult;\n }\n\n const output = {\n config: readTsConfig(filePath),\n path: filePath,\n };\n\n if (options.cache) {\n cache.set(filePath, output);\n }\n\n return output;\n};\n\n// @deprecate Please use `findTsConfig` instead.\nexport const findTSConfig = findTsConfig;\n\nexport const findTsConfigSync = (cwd?: URL | string, options: Options = {}): TsConfigResult => {\n const configFileName = options.configFileName ?? \"tsconfig.json\";\n\n let filePath = findUpSync(configFileName, {\n ...(cwd && { cwd }),\n type: \"file\",\n });\n\n if (!filePath) {\n filePath = findUpSync(\"jsconfig.json\", {\n ...(cwd && { cwd }),\n type: \"file\",\n });\n }\n\n if (!filePath) {\n throw new NotFoundError(`No such file or directory, for ${configFileName} or jsconfig.json found.`);\n }\n\n const cache = options.cache && typeof options.cache !== \"boolean\" ? options.cache : TsConfigFileCache;\n\n if (options.cache && cache.has(filePath)) {\n return cache.get(filePath) as TsConfigResult;\n }\n\n const output = {\n config: readTsConfig(filePath),\n path: filePath,\n };\n\n if (options.cache) {\n cache.set(filePath, output);\n }\n\n return output;\n};\n\n// @deprecate Please use `findTsConfigSync` instead.\nexport const findTSConfigSync = findTsConfigSync;\n\n/**\n * An asynchronous function that writes the provided TypeScript configuration object to a tsconfig.json file.\n *\n * @param tsConfig - The TypeScript configuration object to write. The type of `tsConfig` is `TsConfigJson`.\n * @param options - Optional. The write options and the current working directory. The type of `options` is an\n * intersection type of `WriteOptions` and a Record type with an optional `cwd` key of type `string`.\n * @returns A `Promise` that resolves when the tsconfig.json file has been written.\n * The return type of function is `Promise<void>`.\n */\nexport const writeTsConfig = async (data: TsConfigJson, options: WriteJsonOptions & { cwd?: URL | string } = {}): Promise<void> => {\n const { cwd, ...writeOptions } = options;\n\n const directory = toPath(options.cwd ?? process.cwd());\n\n await writeJson(join(directory, \"tsconfig.json\"), data, writeOptions);\n};\n\n// @deprecate Please use `writeTsconfig` instead.\nexport const writeTSConfig = writeTsConfig;\n","/**\n * A modified version of `readTsconfig` from `https://github.com/privatenumber/get-tsconfig/blob/develop/src/parse-tsconfig/index.ts`\n *\n * MIT License\n * Copyright (c) Hiroki Osame <hiroki.osame@gmail.com>\n */\nimport { realpathSync } from \"node:fs\";\n\nimport { readFileSync } from \"@visulima/fs\";\nimport { NotFoundError } from \"@visulima/fs/error\";\nimport { parse } from \"jsonc-parser\";\nimport { dirname, join, normalize, relative, resolve, toNamespacedPath } from \"pathe\";\nimport type { TsConfigJson } from \"type-fest\";\n\nimport type { TsConfigJsonResolved } from \"./types\";\nimport resolveExtendsPath from \"./utils/resolve-extends-path\";\n\ntype Options = {\n tscCompatible?: boolean;\n};\n\nconst implicitBaseUrlSymbol = Symbol(\"implicitBaseUrl\");\n\nconst readJsonc = (jsonPath: string) => parse(readFileSync(jsonPath) as string) as unknown;\n// eslint-disable-next-line security/detect-unsafe-regex\nconst normalizePath = (path: string): string => toNamespacedPath(/^\\.{1,2}(?:\\/.*)?$/.test(path) ? path : `./${path}`);\n\nconst resolveExtends = (extendsPath: string, fromDirectoryPath: string, circularExtendsTracker: Set<string>, options?: Options) => {\n const resolvedExtendsPath = resolveExtendsPath(extendsPath, fromDirectoryPath);\n\n if (!resolvedExtendsPath) {\n throw new NotFoundError(`No such file or directory, for '${extendsPath}' found.`);\n }\n\n if (circularExtendsTracker.has(resolvedExtendsPath)) {\n throw new Error(`Circularity detected while resolving configuration: ${resolvedExtendsPath}`);\n }\n\n circularExtendsTracker.add(resolvedExtendsPath);\n\n const extendsDirectoryPath = dirname(resolvedExtendsPath);\n // eslint-disable-next-line @typescript-eslint/no-use-before-define\n const extendsConfig = internalParseTsConfig(resolvedExtendsPath, options, circularExtendsTracker);\n\n delete extendsConfig.references;\n\n const { compilerOptions } = extendsConfig;\n\n if (compilerOptions) {\n const resolvePaths = [\"baseUrl\", \"outDir\"] as const;\n\n // eslint-disable-next-line no-loops/no-loops,no-restricted-syntax\n for (const property of resolvePaths) {\n // eslint-disable-next-line security/detect-object-injection\n const unresolvedPath = compilerOptions[property];\n\n if (unresolvedPath) {\n // eslint-disable-next-line security/detect-object-injection\n compilerOptions[property] = relative(fromDirectoryPath, join(extendsDirectoryPath, unresolvedPath)).replaceAll(\"\\\\\", \"/\") || \"./\";\n }\n }\n }\n\n if (extendsConfig.files) {\n extendsConfig.files = extendsConfig.files.map((file) => relative(fromDirectoryPath, join(extendsDirectoryPath, file)));\n }\n\n if (extendsConfig.include) {\n extendsConfig.include = extendsConfig.include.map((file) => relative(fromDirectoryPath, join(extendsDirectoryPath, file)));\n }\n\n if (extendsConfig.exclude) {\n extendsConfig.exclude = extendsConfig.exclude.map((file) => relative(fromDirectoryPath, join(extendsDirectoryPath, file)));\n }\n\n return extendsConfig;\n};\n\n// eslint-disable-next-line sonarjs/cognitive-complexity\nconst internalParseTsConfig = (tsconfigPath: string, options?: Options, circularExtendsTracker = new Set<string>()): TsConfigJsonResolved => {\n let realTsconfigPath: string;\n\n try {\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n realTsconfigPath = realpathSync(tsconfigPath) as string;\n } catch {\n throw new Error(`Cannot resolve tsconfig at path: ${tsconfigPath}`);\n }\n\n /**\n * Decided not to cache the TsConfigJsonResolved object because it's\n * mutable.\n *\n * Note how `resolveExtends` can call `readTsconfig` rescursively\n * and actually mutates the object. It can also be mutated in\n * user-land.\n *\n * By only caching fs results, we can avoid serving mutated objects\n */\n let config: TsConfigJson = readJsonc(realTsconfigPath) || {};\n\n if (typeof config !== \"object\") {\n throw new SyntaxError(`Failed to parse tsconfig at: ${tsconfigPath}`);\n }\n\n const directoryPath = dirname(realTsconfigPath);\n\n if (config.compilerOptions) {\n const { compilerOptions } = config;\n if (compilerOptions.paths && !compilerOptions.baseUrl) {\n type WithImplicitBaseUrl = TsConfigJson.CompilerOptions & {\n [implicitBaseUrlSymbol]: string;\n };\n // eslint-disable-next-line security/detect-object-injection\n (compilerOptions as WithImplicitBaseUrl)[implicitBaseUrlSymbol] = directoryPath;\n }\n }\n\n if (config.extends) {\n const extendsPathList = Array.isArray(config.extends) ? config.extends : [config.extends];\n\n delete config.extends;\n\n // eslint-disable-next-line no-loops/no-loops,no-restricted-syntax,etc/no-assign-mutated-array\n for (const extendsPath of extendsPathList.reverse()) {\n const extendsConfig = resolveExtends(extendsPath, directoryPath, new Set(circularExtendsTracker), options);\n const merged = {\n ...extendsConfig,\n ...config,\n\n compilerOptions: {\n ...extendsConfig.compilerOptions,\n ...config.compilerOptions,\n },\n };\n\n if (extendsConfig.watchOptions) {\n merged.watchOptions = {\n ...extendsConfig.watchOptions,\n ...config.watchOptions,\n };\n }\n\n config = merged;\n }\n }\n\n if (config.compilerOptions) {\n const { compilerOptions } = config;\n const normalizedPaths = [\"baseUrl\", \"rootDir\"] as const;\n\n // eslint-disable-next-line no-loops/no-loops,no-restricted-syntax\n for (const property of normalizedPaths) {\n // eslint-disable-next-line security/detect-object-injection\n const unresolvedPath = compilerOptions[property];\n\n if (unresolvedPath) {\n const resolvedBaseUrl = resolve(directoryPath, unresolvedPath);\n const relativeBaseUrl = relative(directoryPath, resolvedBaseUrl);\n\n // eslint-disable-next-line security/detect-object-injection\n compilerOptions[property] = normalizePath(relativeBaseUrl);\n }\n }\n\n const { outDir } = compilerOptions;\n\n if (outDir) {\n if (!Array.isArray(config.exclude)) {\n config.exclude = [];\n }\n\n if (!config.exclude.includes(outDir)) {\n config.exclude.push(outDir);\n }\n\n compilerOptions.outDir = normalizePath(outDir);\n }\n\n if (options?.tscCompatible && compilerOptions.module === \"node16\") {\n compilerOptions.allowSyntheticDefaultImports = compilerOptions.allowSyntheticDefaultImports ?? true;\n compilerOptions.esModuleInterop = compilerOptions.esModuleInterop ?? true;\n compilerOptions.moduleDetection = compilerOptions.moduleDetection ?? \"force\";\n compilerOptions.moduleResolution = compilerOptions.moduleResolution ?? \"node16\";\n compilerOptions.target = compilerOptions.target ?? \"es2022\";\n compilerOptions.useDefineForClassFields = compilerOptions.useDefineForClassFields ?? true;\n }\n\n if (options?.tscCompatible && compilerOptions.strict) {\n compilerOptions.noImplicitAny = compilerOptions.noImplicitAny ?? true;\n compilerOptions.noImplicitThis = compilerOptions.noImplicitThis ?? true;\n compilerOptions.strictNullChecks = compilerOptions.strictNullChecks ?? true;\n compilerOptions.strictFunctionTypes = compilerOptions.strictFunctionTypes ?? true;\n compilerOptions.strictBindCallApply = compilerOptions.strictBindCallApply ?? true;\n compilerOptions.strictPropertyInitialization = compilerOptions.strictPropertyInitialization ?? true;\n compilerOptions.alwaysStrict = compilerOptions.alwaysStrict ?? true;\n compilerOptions.useUnknownInCatchVariables = compilerOptions.useUnknownInCatchVariables ?? true;\n }\n\n if (options?.tscCompatible && compilerOptions.isolatedModules) {\n compilerOptions.preserveConstEnums = compilerOptions.preserveConstEnums ?? true;\n }\n\n if (options?.tscCompatible && compilerOptions.esModuleInterop) {\n compilerOptions.allowSyntheticDefaultImports = compilerOptions.allowSyntheticDefaultImports ?? true;\n }\n\n if (options?.tscCompatible && compilerOptions.target === \"esnext\") {\n compilerOptions.useDefineForClassFields = compilerOptions.useDefineForClassFields ?? true;\n }\n } else {\n config.compilerOptions = {};\n }\n\n if (config.files) {\n config.files = config.files.map((element) => normalizePath(element));\n }\n\n if (config.include) {\n config.include = config.include.map((element) => normalize(element));\n }\n\n if (config.watchOptions) {\n const { watchOptions } = config;\n\n if (watchOptions.excludeDirectories) {\n watchOptions.excludeDirectories = watchOptions.excludeDirectories.map((excludePath) => resolve(directoryPath, excludePath));\n }\n }\n\n return config;\n};\n\nconst readTsConfig = (tsconfigPath: string, options?: Options): TsConfigJsonResolved => internalParseTsConfig(tsconfigPath, options);\n\nexport default readTsConfig;\n","/**\n * A modified version of `resolveExtendsPath` from `https://github.com/privatenumber/get-tsconfig/blob/develop/src/parse-tsconfig/resolve-extends-path.ts`\n *\n * MIT License\n * Copyright (c) Hiroki Osame <hiroki.osame@gmail.com>\n */\nimport { existsSync, statSync } from \"node:fs\";\nimport Module from \"node:module\";\nimport { isAbsolute, join, resolve } from \"node:path\";\n\nimport { findUpSync, readFileSync } from \"@visulima/fs\";\nimport { parse } from \"jsonc-parser\";\nimport type { PathConditions } from \"resolve-pkg-maps\";\nimport { resolveExports } from \"resolve-pkg-maps\";\nimport type { PackageJson } from \"type-fest\";\n\nimport type { Cache } from \"../types\";\n\nconst readJsonc = (jsonPath: string) => parse(readFileSync(jsonPath) as string) as unknown;\n\nconst getPnpApi = () => {\n const { findPnpApi } = Module;\n\n // https://yarnpkg.com/advanced/pnpapi/#requirepnpapi\n return findPnpApi?.(process.cwd());\n};\n\nconst resolveFromPackageJsonPath = (packageJsonPath: string, subpath: string, ignoreExports?: boolean, cache?: Cache<string>) => {\n const cacheKey = `resolveFromPackageJsonPath:${packageJsonPath}:${subpath}:${ignoreExports}`;\n\n if (cache?.has(cacheKey)) {\n return cache.get(cacheKey);\n }\n\n const packageJson = readJsonc(packageJsonPath);\n\n if (!packageJson) {\n return undefined;\n }\n\n let resolvedPath = subpath || \"tsconfig.json\";\n\n if (!ignoreExports && (packageJson as PackageJson).exports) {\n try {\n const [resolvedExport] = resolveExports((packageJson as PackageJson).exports as PathConditions, subpath, [\"require\", \"types\"]);\n\n resolvedPath = resolvedExport as string;\n } catch {\n // Block\n return false;\n }\n } else if (!subpath && (packageJson as PackageJson).tsconfig) {\n resolvedPath = (packageJson as PackageJson).tsconfig as string;\n }\n\n resolvedPath = join(packageJsonPath, \"..\", resolvedPath);\n\n cache?.set(cacheKey, resolvedPath);\n\n return resolvedPath;\n};\n\nconst PACKAGE_JSON = \"package.json\";\nconst TS_CONFIG_JSON = \"tsconfig.json\";\n\n// eslint-disable-next-line sonarjs/cognitive-complexity\nconst resolveExtendsPath = (requestedPath: string, directoryPath: string, cache?: Cache<string>): string | undefined => {\n let filePath = requestedPath;\n\n if (requestedPath === \"..\") {\n filePath = join(filePath, TS_CONFIG_JSON);\n }\n\n if (requestedPath.startsWith(\".\")) {\n filePath = resolve(directoryPath, filePath);\n }\n\n if (isAbsolute(filePath)) {\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (existsSync(filePath)) {\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (statSync(filePath).isFile()) {\n return filePath;\n }\n } else if (!filePath.endsWith(\".json\")) {\n const jsonPath = `${filePath}.json`;\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (existsSync(jsonPath)) {\n return jsonPath;\n }\n }\n\n return undefined;\n }\n\n const [orgOrName, ...remaining] = requestedPath.split(\"/\");\n const packageName = ((orgOrName as string).startsWith(\"@\") ? `${orgOrName}/${remaining.shift()}` : orgOrName) as string;\n const subpath = remaining.join(\"/\");\n\n const pnpApi = getPnpApi();\n\n if (pnpApi) {\n const { resolveRequest: resolveWithPnp } = pnpApi;\n\n try {\n if (packageName === requestedPath) {\n const packageJsonPath = resolveWithPnp(join(packageName, PACKAGE_JSON), directoryPath);\n\n if (packageJsonPath) {\n const resolvedPath = resolveFromPackageJsonPath(packageJsonPath, subpath, false, cache);\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (resolvedPath && existsSync(resolvedPath)) {\n return resolvedPath;\n }\n }\n } else {\n let resolved: string | null;\n\n try {\n resolved = resolveWithPnp(requestedPath, directoryPath, { extensions: [\".json\"] });\n } catch {\n resolved = resolveWithPnp(join(requestedPath, TS_CONFIG_JSON), directoryPath);\n }\n\n if (resolved) {\n return resolved;\n }\n }\n } catch {\n /* empty */\n }\n }\n\n const packagePath = findUpSync(\n (directory) => {\n const path = join(directory, \"node_modules\", packageName);\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (existsSync(path)) {\n return join(\"node_modules\", packageName);\n }\n\n return undefined;\n },\n {\n cwd: directoryPath,\n type: \"directory\",\n },\n );\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (!packagePath || !statSync(packagePath).isDirectory()) {\n return undefined;\n }\n\n const packageJsonPath = join(packagePath, PACKAGE_JSON);\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (existsSync(packageJsonPath)) {\n const resolvedPath = resolveFromPackageJsonPath(packageJsonPath, subpath, false, cache);\n\n // Blocked\n if (resolvedPath === false) {\n return undefined;\n }\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (resolvedPath && existsSync(resolvedPath) && statSync(resolvedPath).isFile()) {\n return resolvedPath;\n }\n }\n\n const fullPackagePath = join(packagePath, subpath);\n const jsonExtension = fullPackagePath.endsWith(\".json\");\n\n if (!jsonExtension) {\n const fullPackagePathWithJson = `${fullPackagePath}.json`;\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (existsSync(fullPackagePathWithJson)) {\n return fullPackagePathWithJson;\n }\n }\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (!existsSync(fullPackagePath)) {\n return undefined;\n }\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (statSync(fullPackagePath).isDirectory()) {\n const fullPackageJsonPath = join(fullPackagePath, PACKAGE_JSON);\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (existsSync(fullPackageJsonPath)) {\n const resolvedPath = resolveFromPackageJsonPath(fullPackageJsonPath, \"\", true, cache);\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (resolvedPath && existsSync(resolvedPath)) {\n return resolvedPath;\n }\n }\n\n const tsconfigPath = join(fullPackagePath, TS_CONFIG_JSON);\n\n // eslint-disable-next-line security/detect-non-literal-fs-filename\n if (existsSync(tsconfigPath)) {\n return tsconfigPath;\n }\n } else if (jsonExtension) {\n return fullPackagePath;\n }\n\n return undefined;\n};\n\nexport default resolveExtendsPath;\n"]}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkKSXRMTAQ_cjs = require('./chunk-KSXRMTAQ.cjs');
|
|
4
4
|
var fs$1 = require('fs');
|
|
5
5
|
var fs = require('@visulima/fs');
|
|
6
6
|
var error = require('@visulima/fs/error');
|
|
7
7
|
var pathe = require('pathe');
|
|
8
8
|
|
|
9
|
-
var w=async n=>{let a=await fs.findUp(["lerna.json","turbo.json"],{type:"file",...n&&{cwd:n}});if(a?.endsWith("lerna.json")){let o=await fs.readJson(a);if(o.useWorkspaces||o.packages)return {path:pathe.dirname(a),strategy:"lerna"}}let s=a?.endsWith("turbo.json");try{let{packageManager:o,path:r}=await
|
|
9
|
+
var w=async n=>{let a=await fs.findUp(["lerna.json","turbo.json"],{type:"file",...n&&{cwd:n}});if(a?.endsWith("lerna.json")){let o=await fs.readJson(a);if(o.useWorkspaces||o.packages)return {path:pathe.dirname(a),strategy:"lerna"}}let s=a?.endsWith("turbo.json");try{let{packageManager:o,path:r}=await chunkKSXRMTAQ_cjs.c(n);if(["npm","yarn"].includes(o)){let t=pathe.join(r,"package.json");if(fs$1.existsSync(t)&&fs$1.readFileSync(pathe.join(r,"package.json"),"utf8").includes("workspaces"))return {path:r,strategy:s?"turbo":o}}else if(o==="pnpm"){let t=pathe.join(r,"pnpm-workspace.yaml");if(fs$1.existsSync(t))return {path:r,strategy:s?"turbo":"pnpm"}}}catch(o){if(!(o instanceof error.NotFoundError))throw o}throw new Error(`No monorepo root could be found upwards from the directory ${n} using lerna, yarn, pnpm, or npm as indicators.`)};
|
|
10
10
|
|
|
11
11
|
exports.a = w;
|
|
12
12
|
//# sourceMappingURL=out.js.map
|
|
13
|
-
//# sourceMappingURL=chunk-
|
|
13
|
+
//# sourceMappingURL=chunk-WOLHGXXJ.cjs.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { d } from './chunk-44SW4DFI.js';
|
|
2
|
+
|
|
3
|
+
var t=class extends Error{constructor(n,r){if(typeof n=="string"&&(n=[n]),n.length===0){super("Package was not found.");return}if(r===void 0)try{r=d().packageManager;}catch{}r===void 0&&(r="npm"),super(`Package '${n.join(" ")}' was not found. Please install it using '${r} install ${n.join(" ")}'`);}get code(){return "PACKAGE_NOT_FOUND"}set code(n){throw new Error("Cannot overwrite code PACKAGE_NOT_FOUND")}get name(){return "PackageNotFoundError"}set name(n){throw new Error("Cannot overwrite name of PackageNotFoundError")}},f=t;
|
|
4
|
+
|
|
5
|
+
export { f as a };
|
|
6
|
+
//# sourceMappingURL=out.js.map
|
|
7
|
+
//# sourceMappingURL=chunk-ZDLZRGSC.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/error/package-not-found-error.ts"],"names":["PackageNotFoundError","packageName","packageManager","findPackageManagerSync","_name","package_not_found_error_default"],"mappings":"wCAKA,IAAMA,EAAN,cAAmC,KAAM,CAK9B,YAAYC,EAAgCC,EAAyB,CAMxE,GALI,OAAOD,GAAgB,WAEvBA,EAAc,CAACA,CAAW,GAG1BA,EAAY,SAAW,EAAG,CAC1B,MAAM,wBAAwB,EAC9B,MACJ,CAEA,GAAIC,IAAmB,OACnB,GAAI,CAIAA,EAHqBC,EAAuB,EAGd,cAClC,MAAQ,CAER,CAGAD,IAAmB,SAEnBA,EAAiB,OAGrB,MAAM,YAAYD,EAAY,KAAK,GAAG,CAAC,6CAA6CC,CAAc,YAAYD,EAAY,KAAK,GAAG,CAAC,GAAG,CAC1I,CAGA,IAAW,MAAe,CACtB,MAAO,mBACX,CAGA,IAAW,KAAKG,EAAO,CACnB,MAAM,IAAI,MAAM,yCAAyC,CAC7D,CAGA,IAAoB,MAAe,CAC/B,MAAO,sBACX,CAGA,IAAoB,KAAKA,EAAO,CAC5B,MAAM,IAAI,MAAM,+CAA+C,CACnE,CACJ,EAEOC,EAAQL","sourcesContent":["import { findPackageManagerSync } from \"../package-manager\";\n\n/**\n * Error thrown when a package was not found.\n */\nclass PackageNotFoundError extends Error {\n /**\n * @param {string} packageName - The name of the package that was not found.\n * @param {string} packageManager - The package manager used to install the package.\n */\n public constructor(packageName: string[] | string, packageManager?: string) {\n if (typeof packageName === \"string\") {\n // eslint-disable-next-line no-param-reassign\n packageName = [packageName];\n }\n\n if (packageName.length === 0) {\n super(\"Package was not found.\");\n return;\n }\n\n if (packageManager === undefined) {\n try {\n const foundManager = findPackageManagerSync();\n\n // eslint-disable-next-line no-param-reassign\n packageManager = foundManager.packageManager;\n } catch {\n // Empty\n }\n }\n\n if (packageManager === undefined) {\n // eslint-disable-next-line no-param-reassign\n packageManager = \"npm\";\n }\n\n super(`Package '${packageName.join(\" \")}' was not found. Please install it using '${packageManager} install ${packageName.join(\" \")}'`);\n }\n\n // eslint-disable-next-line class-methods-use-this,@typescript-eslint/class-literal-property-style\n public get code(): string {\n return \"PACKAGE_NOT_FOUND\";\n }\n\n // eslint-disable-next-line class-methods-use-this,@typescript-eslint/explicit-module-boundary-types\n public set code(_name) {\n throw new Error(\"Cannot overwrite code PACKAGE_NOT_FOUND\");\n }\n\n // eslint-disable-next-line class-methods-use-this,@typescript-eslint/class-literal-property-style\n public override get name(): string {\n return \"PackageNotFoundError\";\n }\n\n // eslint-disable-next-line class-methods-use-this,@typescript-eslint/explicit-module-boundary-types\n public override set name(_name) {\n throw new Error(\"Cannot overwrite name of PackageNotFoundError\");\n }\n}\n\nexport default PackageNotFoundError;\n"]}
|
package/dist/error.cjs
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var chunkDNYCFU7L_cjs = require('./chunk-DNYCFU7L.cjs');
|
|
4
|
+
require('./chunk-KSXRMTAQ.cjs');
|
|
5
|
+
require('./chunk-6KT7465D.cjs');
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
Object.defineProperty(exports, 'PackageNotFoundError', {
|
|
10
|
+
enumerable: true,
|
|
11
|
+
get: function () { return chunkDNYCFU7L_cjs.a; }
|
|
12
|
+
});
|
|
13
|
+
//# sourceMappingURL=out.js.map
|
|
14
|
+
//# sourceMappingURL=error.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":""}
|
package/dist/error.d.cts
ADDED