@nu-art/build-and-install 0.204.12 → 0.204.13
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/package.json
CHANGED
package/screen/ProjectScreen.js
CHANGED
|
@@ -134,7 +134,7 @@ class ProjectScreen {
|
|
|
134
134
|
},
|
|
135
135
|
}
|
|
136
136
|
});
|
|
137
|
-
blessed.text({
|
|
137
|
+
this.titleElement = blessed.text({
|
|
138
138
|
parent: this.screen,
|
|
139
139
|
top: 0,
|
|
140
140
|
right: 0,
|
|
@@ -171,10 +171,11 @@ class ProjectScreen {
|
|
|
171
171
|
this.enabled = false;
|
|
172
172
|
if (!this.screen)
|
|
173
173
|
return;
|
|
174
|
-
this.screen.detach();
|
|
175
174
|
this.phaseBox.detach();
|
|
176
175
|
this.packageTable.detach();
|
|
176
|
+
this.titleElement.detach();
|
|
177
177
|
this.logger.detach();
|
|
178
|
+
this.screen.detach();
|
|
178
179
|
this.screen.clear();
|
|
179
180
|
this.screen.destroy();
|
|
180
181
|
process.stdout.write('\x1bc'); // This sends the terminal reset escape code
|