@nu-art/build-and-install 0.204.75 → 0.204.76
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
|
@@ -383,7 +383,9 @@ class PhaseRunner extends core_1.BaseUnit {
|
|
|
383
383
|
});
|
|
384
384
|
}
|
|
385
385
|
async killRunner() {
|
|
386
|
+
this.logDebug('Killing units');
|
|
386
387
|
await Promise.all(this.units.map(unit => unit.kill()));
|
|
388
|
+
this.logDebug('Units killed');
|
|
387
389
|
await this.setRunningStatus();
|
|
388
390
|
}
|
|
389
391
|
setScreen(screen) {
|
|
@@ -287,10 +287,12 @@ class Unit_FirebaseFunctionsApp extends core_1.Unit_TypescriptLib {
|
|
|
287
287
|
async kill() {
|
|
288
288
|
if (!this.launchCommandos)
|
|
289
289
|
return;
|
|
290
|
+
this.logWarning(`Killing unit - ${this.config.label}`);
|
|
290
291
|
const emulatorPid = this.getPID(this.listeners.emulator.pid);
|
|
291
292
|
const proxyPid = this.getPID(this.listeners.proxy.pid);
|
|
292
293
|
await this.launchCommandos.emulator.gracefullyKill(emulatorPid);
|
|
293
294
|
await this.launchCommandos.proxy.gracefullyKill(proxyPid);
|
|
295
|
+
this.logWarning(`Unit killed - ${this.config.label}`);
|
|
294
296
|
}
|
|
295
297
|
//######################### Deploy Logic #########################
|
|
296
298
|
async printFiles() {
|
|
@@ -145,8 +145,10 @@ class Unit_FirebaseHostingApp extends core_1.Unit_TypescriptLib {
|
|
|
145
145
|
var _a;
|
|
146
146
|
if (!this.launchCommando)
|
|
147
147
|
return;
|
|
148
|
+
this.logWarning(`Killing unit - ${this.config.label}`);
|
|
148
149
|
const appPid = this.getPID();
|
|
149
150
|
await ((_a = this.launchCommando) === null || _a === void 0 ? void 0 : _a.gracefullyKill(appPid));
|
|
151
|
+
this.logWarning(`Unit killed - ${this.config.label}`);
|
|
150
152
|
}
|
|
151
153
|
//######################### Deploy Logic #########################
|
|
152
154
|
async deployImpl() {
|