fix(build): update tooling configuration and align nginx certificate generation with current dependencies

This commit is contained in:
2026-04-30 17:47:40 +00:00
parent 8b9420d9b6
commit 6499ba9ceb
13 changed files with 2297 additions and 1958 deletions
+2 -2
View File
@@ -11,7 +11,7 @@ import { ChildProcess } from 'child_process';
export class NginxProcess {
public started: boolean = false;
public smartNginxRef: SmartNginx;
private nginxChildProcess: ChildProcess;
private nginxChildProcess?: ChildProcess;
private smartshellInstance = new plugins.smartshell.Smartshell({
executor: 'bash',
});
@@ -62,6 +62,6 @@ export class NginxProcess {
* checks if nginx is in path
*/
public check(): boolean {
return;
return Boolean(this.nginxChildProcess);
}
}