@nx/js
Version:
8 lines (7 loc) • 395 B
TypeScript
import { type ExecutorContext } from '@nx/devkit';
import { type PackageJson } from 'nx/src/utils/package-json';
import { type PruneLockfileOptions } from './schema';
export default function pruneLockfileExecutor(schema: PruneLockfileOptions, context: ExecutorContext): Promise<{
success: boolean;
}>;
export declare function resolveCatalogReferences(packageJson: PackageJson): PackageJson;