fix(core): update

This commit is contained in:
Philipp Kunz 2019-06-03 17:09:16 +02:00
parent 59eed53644
commit 74a0a27fc1
2 changed files with 5 additions and 8 deletions

View File

@ -11,7 +11,7 @@ export class SmartPdf {
htmlServerInstance: Server;
serverPort: number;
headlessBrowser: plugins.puppeteer.Browser;
externalBrowser: boolean = false;
externalBrowserBool: boolean = false;
private _readyDeferred: plugins.smartpromise.Deferred<void>;
private _candidates: { [key: string]: PdfCandidate } = {};
@ -23,7 +23,9 @@ export class SmartPdf {
// lets set the external browser in case one is provided
this.headlessBrowser = headlessBrowserArg
// setup puppeteer
if (!this.headlessBrowser) {
if (this.headlessBrowser) {
this.externalBrowserBool = true;
} else {
let chromeArgs: string[] = [];
if(process.env.CI) {
chromeArgs = chromeArgs.concat(['--no-sandbox', '--disable-setuid-sandbox'])
@ -31,8 +33,6 @@ export class SmartPdf {
this.headlessBrowser = await plugins.puppeteer.launch({
args: chromeArgs
});
} else {
this.externalBrowser = true;
}
// setup server
@ -57,7 +57,7 @@ export class SmartPdf {
done.resolve();
});
if (!this.externalBrowser) {
if (!this.externalBrowserBool) {
await this.headlessBrowser.close();
}

View File

@ -1,6 +1,3 @@
import * as plugins from './smartpdf.plugins';
export const packageDir = plugins.path.join(__dirname, '../');
export const pdfDir = plugins.path.join(packageDir, 'assets/pdfdir');
plugins.smartfile.fs.ensureDirSync(pdfDir);