nativescript 8.3.1 → 8.3.2

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.
@@ -115,7 +115,7 @@ class DeviceLogProvider extends device_log_provider_base_1.DeviceLogProviderBase
115
115
  printLine(prefix, ...parts) {
116
116
  const maxWidth = process.stdout.columns - 2;
117
117
  const fullLine = parts.join(" ");
118
- if (fullLine.length < maxWidth) {
118
+ if (!maxWidth || maxWidth < 10 || fullLine.length < maxWidth) {
119
119
  console.log(prefix, fullLine);
120
120
  }
121
121
  else {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "nativescript",
3
3
  "preferGlobal": true,
4
- "version": "8.3.1",
4
+ "version": "8.3.2",
5
5
  "author": "NativeScript <support@nativescript.org>",
6
6
  "description": "Command-line interface for building NativeScript projects",
7
7
  "bin": {