UNPKG

@pnp/cli-microsoft365

Version:

Manage Microsoft 365 and SharePoint Framework projects on any platform

15 lines 476 B
import ContextCommand from '../../base/ContextCommand.js'; import commands from '../commands.js'; class ContextInitCommand extends ContextCommand { get name() { return commands.INIT; } get description() { return 'Initiates CLI for Microsoft 365 context in the current working folder'; } async commandAction() { await this.saveContextInfo({}); } } export default new ContextInitCommand(); //# sourceMappingURL=context-init.js.map