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
16 lines (13 loc) • 467 B
text/typescript
import {type CliCommandDefinition} from '@sanity/cli'
const configCheckCommand: CliCommandDefinition = {
name: 'configcheck',
signature: '',
description: 'Checks if the required configuration files for plugins exists and are up to date',
helpText: '',
hideFromHelp: true,
action: async (args, context) => {
context.output.error('`sanity configcheck` is no longer required/used')
return Promise.resolve()
},
}
export default configCheckCommand