sanity
Version:
Sanity is a real-time content infrastructure with a scalable, hosted backend featuring a Graph Oriented Query Language (GROQ), asset pipelines and fast edge caches
15 lines (12 loc) • 436 B
text/typescript
import {type CliCommandDefinition} from '@sanity/cli'
const uninstallCommand: CliCommandDefinition = {
name: 'uninstall',
signature: '[plugin]',
helpText: '',
description: 'Removes a Sanity plugin from the current Sanity configuration',
hideFromHelp: true,
action: async (args, context) => {
await context.output.error('`sanity uninstall` is no longer supported - use npm/yarn')
},
}
export default uninstallCommand