PHP WebShell
Текущая директория: /opt/BitGoJS/node_modules/nx/src/utils
Просмотр файла: workspace-root.js
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.workspaceRootInner = exports.workspaceRoot = void 0;
const path = require("path");
const fileutils_1 = require("./fileutils");
/**
* The root of the workspace
*/
exports.workspaceRoot = workspaceRootInner(process.cwd(), process.cwd());
function workspaceRootInner(dir, candidateRoot) {
if (process.env.NX_WORKSPACE_ROOT_PATH)
return process.env.NX_WORKSPACE_ROOT_PATH;
if (path.dirname(dir) === dir)
return candidateRoot;
const matches = [
path.join(dir, 'nx.json'),
path.join(dir, 'nx'),
path.join(dir, 'nx.bat'),
];
if (matches.some((x) => (0, fileutils_1.fileExists)(x))) {
return dir;
// This handles the case where we have a workspace which uses npm / yarn / pnpm
// workspaces, and has a project which contains Nx in its dependency tree.
// e.g. packages/my-lib/package.json contains @nrwl/devkit, which references Nx and is
// thus located in //packages/my-lib/node_modules/nx/package.json
}
else if ((0, fileutils_1.fileExists)(path.join(dir, 'node_modules', 'nx', 'package.json'))) {
return workspaceRootInner(path.dirname(dir), dir);
}
else {
return workspaceRootInner(path.dirname(dir), candidateRoot);
}
}
exports.workspaceRootInner = workspaceRootInner;
//# sourceMappingURL=workspace-root.js.mapВыполнить команду
Для локальной разработки. Не используйте в интернете!