@pnp/cli-microsoft365 7.1.0-beta.bcf9db3 → 7.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/Auth.js CHANGED
@@ -289,7 +289,7 @@ export class Auth {
289
289
  // but also stub it for testing
290
290
  /* c8 ignore next 3 */
291
291
  if (!this._authServer) {
292
- this._authServer = (await import('./AuthServer')).default;
292
+ this._authServer = (await import('./AuthServer.js')).default;
293
293
  }
294
294
  this._authServer.initializeServer(this.service, resource, resolve, reject, logger, debug);
295
295
  });
@@ -45,6 +45,8 @@ class SetupCommand extends AnonymousCommand {
45
45
  await this.configureSettings(settings, true, logger);
46
46
  return;
47
47
  }
48
+ // stop the spinner. Fixes #5598
49
+ Cli.getInstance().spinner.stop();
48
50
  await logger.logToStderr(`Welcome to the CLI for Microsoft 365 setup!`);
49
51
  await logger.logToStderr(`This command will guide you through the process of configuring the CLI for your needs.`);
50
52
  await logger.logToStderr(`Please, answer the following questions and we'll define a set of settings to best match how you intend to use the CLI.`);
@@ -95,6 +97,8 @@ class SetupCommand extends AnonymousCommand {
95
97
  await logger.logToStderr('');
96
98
  await logger.logToStderr('Configuring settings...');
97
99
  await logger.logToStderr('');
100
+ // start the spinner. Fixes #5598
101
+ Cli.getInstance().spinner.start();
98
102
  await this.configureSettings(settings, false, logger);
99
103
  if (!this.verbose) {
100
104
  await logger.logToStderr('');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnp/cli-microsoft365",
3
- "version": "7.1.0-beta.bcf9db3",
3
+ "version": "7.1.0",
4
4
  "description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
5
5
  "license": "MIT",
6
6
  "main": "./dist/api.js",
@@ -300,4 +300,4 @@
300
300
  "sinon": "^15.2.0",
301
301
  "source-map-support": "^0.5.21"
302
302
  }
303
- }
303
+ }