@nu-art/build-and-install 0.204.12 → 0.204.14

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nu-art/build-and-install",
3
- "version": "0.204.12",
3
+ "version": "0.204.14",
4
4
  "description": "",
5
5
  "keywords": [
6
6
  "TacB0sS",
@@ -12,6 +12,7 @@ export declare class ProjectScreen {
12
12
  private phaseBox;
13
13
  private packageTable;
14
14
  private logger;
15
+ private titleElement;
15
16
  readonly logClient: LogClient_MemBuffer;
16
17
  private enabled;
17
18
  constructor(initialData: PackageStatus[]);
@@ -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