import { MrBuilderCommandOptions, MrCliCommandDefinition } from '@cirrusct/mr-core'; import { commonBuilderOptions } from '../_common'; export const clean: MrCliCommandDefinition = { description: 'Clean Package', name: 'clean', options: [ ...commonBuilderOptions, { name: 'deep', description: 'Clear package node_modules', default: false, valueType: 'boolean', }, { name: 'removeLock', description: 'Remove yarn.lock file', default: false, valueType: 'boolean', } ], };