@pakk/core
Version:
The core library of pakk, that can manage your package.json for library development.
14 lines • 674 B
TypeScript
import { PackageJson, RegularWorkspacePackage } from '@alexaegis/workspace-tools';
import { NormalizedPakkContext } from '../../index.js';
import { PackageJsonKindType } from '../../package-json/index.js';
import { PakkFeature } from '../pakk-feature.type.js';
/**
* Removes the workspace: dependency specifier
*/
export declare class AutoRemoveWorkspaceDirective implements PakkFeature {
readonly order = 6;
private readonly context;
constructor(context: NormalizedPakkContext);
postprocess(workspacePackage: RegularWorkspacePackage, packageJsonKind: PackageJsonKindType): PackageJson;
}
//# sourceMappingURL=auto-remove-workspace-directive.class.d.ts.map