Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
4f93d258b8 | |||
60993fc005 | |||
db4965c8f5 | |||
36a964d931 |
6345
package-lock.json
generated
6345
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
19
package.json
19
package.json
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@pushrocks/smartpdf",
|
||||
"version": "3.0.7",
|
||||
"version": "3.0.9",
|
||||
"private": false,
|
||||
"description": "create pdfs on the fly",
|
||||
"main": "dist_ts/index.js",
|
||||
@ -13,23 +13,24 @@
|
||||
"build": "(tsbuild --web --allowimplicitany)"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@gitzone/tsbuild": "^2.1.63",
|
||||
"@gitzone/tsbuild": "^2.1.65",
|
||||
"@gitzone/tsrun": "^1.2.35",
|
||||
"@gitzone/tstest": "^1.0.71",
|
||||
"@pushrocks/tapbundle": "^5.0.3",
|
||||
"@types/node": "^18.0.0"
|
||||
"@gitzone/tstest": "^1.0.73",
|
||||
"@pushrocks/tapbundle": "^5.0.4",
|
||||
"@types/node": "^18.7.14"
|
||||
},
|
||||
"dependencies": {
|
||||
"@pushrocks/smartfile": "^10.0.2",
|
||||
"@pushrocks/smartdelay": "^2.0.13",
|
||||
"@pushrocks/smartfile": "^10.0.5",
|
||||
"@pushrocks/smartnetwork": "^3.0.0",
|
||||
"@pushrocks/smartpath": "^5.0.5",
|
||||
"@pushrocks/smartpromise": "^3.1.7",
|
||||
"@pushrocks/smartpuppeteer": "^2.0.0",
|
||||
"@pushrocks/smartpuppeteer": "^2.0.2",
|
||||
"@pushrocks/smartunique": "^3.0.3",
|
||||
"@tsclass/tsclass": "^4.0.17",
|
||||
"@tsclass/tsclass": "^4.0.19",
|
||||
"@types/express": "^4.17.13",
|
||||
"express": "^4.18.1",
|
||||
"pdf-merger-js": "^3.4.0",
|
||||
"pdf-merger-js": "^4.1.0",
|
||||
"pdf2json": "^2.0.0"
|
||||
},
|
||||
"files": [
|
||||
|
@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@pushrocks/smartpdf',
|
||||
version: '3.0.7',
|
||||
version: '3.0.9',
|
||||
description: 'create pdfs on the fly'
|
||||
}
|
||||
|
@ -84,6 +84,7 @@ export class SmartPdf {
|
||||
const response = await page.goto(`http://localhost:3210/${pdfCandidate.pdfId}`, {
|
||||
waitUntil: 'networkidle2',
|
||||
});
|
||||
await plugins.smartdelay.delayFor(1000);
|
||||
const headers = response.headers();
|
||||
if (headers['pdf-id'] !== pdfCandidate.pdfId) {
|
||||
console.log('Error! Headers do not match. For security reasons no pdf is being emitted!');
|
||||
|
@ -6,13 +6,14 @@ export { http, path };
|
||||
|
||||
// @pushrocks
|
||||
import * as smartfile from '@pushrocks/smartfile';
|
||||
import * as smartdelay from '@pushrocks/smartdelay';
|
||||
import * as smartpromise from '@pushrocks/smartpromise';
|
||||
import * as smartpath from '@pushrocks/smartpath';
|
||||
import * as smartpuppeteer from '@pushrocks/smartpuppeteer';
|
||||
import * as smartnetwork from '@pushrocks/smartnetwork';
|
||||
import * as smartunique from '@pushrocks/smartunique';
|
||||
|
||||
export { smartfile, smartpromise, smartpath, smartpuppeteer, smartunique, smartnetwork };
|
||||
export { smartfile, smartdelay, smartpromise, smartpath, smartpuppeteer, smartunique, smartnetwork };
|
||||
|
||||
// tsclass scope
|
||||
import * as tsclass from '@tsclass/tsclass';
|
||||
|
Reference in New Issue
Block a user