@pnp/cli-microsoft365
Version:
Manage Microsoft 365 and SharePoint Framework projects on any platform
26 lines • 1.04 kB
JavaScript
import { cli } from './cli/cli.js';
import { app } from './utils/app.js';
await (async () => {
// required to make console.log() in combination with piped output synchronous
// on Windows/in PowerShell so that the output is not trimmed by calling
// process.exit() after executing the command, while the output is still
// being processed; https://github.com/pnp/cli-microsoft365/issues/1266
if (process.stdout._handle) {
process.stdout._handle.setBlocking(true);
}
if (!process.env.CLIMICROSOFT365_NOUPDATE) {
const updateNotifier = await import('update-notifier');
updateNotifier.default({ pkg: app.packageJson() }).notify({ defer: false });
}
try {
await cli.execute(process.argv.slice(2));
}
catch (err) {
if (err instanceof Error && err.name === 'ExitPromptError') {
process.exit(1);
}
await cli.closeWithError(err, cli.optionsFromArgs || { options: {} });
}
})();
//# sourceMappingURL=index.js.map