@pnp/cli-microsoft365 7.7.0-beta.7b57cf9 → 7.7.0-beta.8a32d54
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/allCommands.json +1 -1
- package/allCommandsFull.json +1 -1
- package/dist/cli/cli.js +2 -1
- package/package.json +1 -1
package/dist/cli/cli.js
CHANGED
|
@@ -875,7 +875,8 @@ export const cli = {
|
|
|
875
875
|
const spinnerOptions = {
|
|
876
876
|
text: 'Running command...',
|
|
877
877
|
/* c8 ignore next 1 */
|
|
878
|
-
stream: cli.getSettingWithDefaultValue('errorOutput', 'stderr') === 'stderr' ? process.stderr : process.stdout
|
|
878
|
+
stream: cli.getSettingWithDefaultValue('errorOutput', 'stderr') === 'stderr' ? process.stderr : process.stdout,
|
|
879
|
+
discardStdin: false
|
|
879
880
|
};
|
|
880
881
|
cli.spinner = ora(spinnerOptions);
|
|
881
882
|
//# sourceMappingURL=cli.js.map
|
package/package.json
CHANGED