@swell/cli
Version:
Swell's command line interface/utility
17 lines (15 loc) • 645 B
JavaScript
import { Command } from '@oclif/core';
export default class Inspect extends Command {
static summary = 'Inspect deployed artifacts in your store.';
static description = `View configuration and data for deployed resources.
Inspect models, content views, and other deployed artifacts in your Swell store.`;
static examples = [
'swell inspect models',
'swell inspect models /products',
'swell inspect models /apps/myapp/orders',
];
async run() {
this.log('Use "swell inspect models" to inspect deployed artifacts.');
this.log('Run "swell inspect --help" for more information.');
}
}