You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
2.3 KiB
49 lines
2.3 KiB
"use strict";
|
|
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
|
|
// See LICENSE in the project root for license information.
|
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.ensurePathToGeneratedPatch = exports.getPathToLinterJS = exports.findAndConsoleLogPatchPathCli = void 0;
|
|
const fs_1 = __importDefault(require("fs"));
|
|
const os_1 = __importDefault(require("os"));
|
|
const _patch_base_1 = require("../_patch-base");
|
|
const constants_1 = require("./constants");
|
|
const package_json_1 = __importDefault(require("../../package.json"));
|
|
const CURRENT_PACKAGE_VERSION = package_json_1.default.version;
|
|
function findAndConsoleLogPatchPathCli() {
|
|
const eslintBulkDetectEnvVarValue = process.env[constants_1.ESLINT_BULK_DETECT_ENV_VAR_NAME];
|
|
if (eslintBulkDetectEnvVarValue !== 'true' && eslintBulkDetectEnvVarValue !== '1') {
|
|
return;
|
|
}
|
|
const startDelimiter = 'RUSHSTACK_ESLINT_BULK_START';
|
|
const endDelimiter = 'RUSHSTACK_ESLINT_BULK_END';
|
|
const configuration = {
|
|
/**
|
|
* `@rushstack/eslint-bulk` should report an error if its package.json is older than this number
|
|
*/
|
|
minCliVersion: '0.0.0',
|
|
/**
|
|
* `@rushstack/eslint-bulk` will invoke this entry point
|
|
*/
|
|
cliEntryPoint: require.resolve('../exports/eslint-bulk')
|
|
};
|
|
console.log(startDelimiter + JSON.stringify(configuration) + endDelimiter);
|
|
}
|
|
exports.findAndConsoleLogPatchPathCli = findAndConsoleLogPatchPathCli;
|
|
function getPathToLinterJS() {
|
|
if (!_patch_base_1.eslintFolder) {
|
|
throw new Error('Cannot find ESLint installation to patch.');
|
|
}
|
|
return `${_patch_base_1.eslintFolder}/lib/linter/linter.js`;
|
|
}
|
|
exports.getPathToLinterJS = getPathToLinterJS;
|
|
function ensurePathToGeneratedPatch() {
|
|
const patchesFolderPath = `${os_1.default.tmpdir()}/rushstack-eslint-bulk-${CURRENT_PACKAGE_VERSION}/patches`;
|
|
fs_1.default.mkdirSync(patchesFolderPath, { recursive: true });
|
|
const pathToGeneratedPatch = `${patchesFolderPath}/linter-patch-v${_patch_base_1.eslintPackageVersion}.js`;
|
|
return pathToGeneratedPatch;
|
|
}
|
|
exports.ensurePathToGeneratedPatch = ensurePathToGeneratedPatch;
|
|
//# sourceMappingURL=path-utils.js.map
|