UNPKG

@nx/js

Version:

The JS plugin for Nx contains executors and generators that provide the best experience for developing JavaScript and TypeScript projects.

8 lines (7 loc) 395 B
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;