@navikt/aksel
Version:
Aksel command line interface. Codemods and other utilities for Aksel users.
109 lines (108 loc) • 5.35 kB
JavaScript
;
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || (function () {
var ownKeys = function(o) {
ownKeys = Object.getOwnPropertyNames || function (o) {
var ar = [];
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
return ar;
};
return ownKeys(o);
};
return function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
__setModuleDefault(result, mod);
return result;
};
})();
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.runCodeshift = runCodeshift;
const chalk_1 = __importDefault(require("chalk"));
const fast_glob_1 = __importDefault(require("fast-glob"));
const jscodeshift = __importStar(require("jscodeshift/src/Runner"));
const node_path_1 = __importDefault(require("node:path"));
const codeshift_utils_1 = require("./codeshift.utils");
const migrations_1 = require("./migrations");
const ignoreNodeModules = [
"**/node_modules/**",
"**/dist/**",
"**/build/**",
"**/lib/**",
"**/.next/**",
];
function runCodeshift(input, options, program) {
return __awaiter(this, void 0, void 0, function* () {
var _a;
const codemodPath = node_path_1.default.join(__dirname, `./transforms/${(0, migrations_1.getMigrationPath)(input)}.js`);
console.info(chalk_1.default.greenBright.bold("\nWelcome to Aksel codemods!"));
console.info("\nRunning migration:", chalk_1.default.green(input));
const globList = (_a = options.glob) !== null && _a !== void 0 ? _a : (0, codeshift_utils_1.getDefaultGlob)(options === null || options === void 0 ? void 0 : options.ext);
console.info(chalk_1.default.gray(`Using glob pattern(s): ${globList}\nWorking directory: ${process.cwd()}\n`));
const filepaths = fast_glob_1.default.sync(globList, {
cwd: process.cwd(),
ignore: codeshift_utils_1.GLOB_IGNORE_PATTERNS,
/**
* When globbing, do not follow symlinks to avoid processing files outside the directory.
* This is most likely to happen in monorepos where node_modules may contain symlinks to packages
* in other parts of the repo.
*
* While node_modules is already ignored via GLOB_IGNORE_PATTERNS, if user globs upwards (e.g., using '../src/**'),
* that ignore-pattern may be ignored, leading to unintended file processing.
*/
followSymbolicLinks: false,
});
const warning = (0, migrations_1.getWarning)(input);
const unsafeExtensions = (0, migrations_1.getIgnoredFileExtensions)(input);
let safeFilepaths = filepaths;
if (unsafeExtensions.length > 0) {
safeFilepaths = filepaths.filter((f) => !unsafeExtensions.some((ext) => f.endsWith(`.${ext}`)));
}
try {
yield jscodeshift.run(codemodPath, safeFilepaths, {
babel: true,
ignorePattern: ignoreNodeModules,
parser: "tsx",
verbose: 2,
runInBand: true,
silent: false,
stdin: false,
dry: options === null || options === void 0 ? void 0 : options.dryRun,
force: options === null || options === void 0 ? void 0 : options.force,
print: options === null || options === void 0 ? void 0 : options.print,
});
warning && console.info(`\n${chalk_1.default.yellow(warning)}\n`);
}
catch (error) {
program.error(chalk_1.default.red("Error:", error.message));
}
});
}