6 Commits

Author SHA1 Message Date
9615d7d0e3 2.0.5 2022-11-08 07:56:52 +01:00
431f63e283 fix(core): update 2022-11-08 07:56:52 +01:00
e9bf2032fb 2.0.4 2022-10-26 23:10:45 +02:00
3a2e85b4e5 fix(core): update 2022-10-26 23:10:45 +02:00
fdfa6a72c8 2.0.3 2022-10-26 23:00:44 +02:00
801416dc1e fix(core): update 2022-10-26 23:00:43 +02:00
5 changed files with 4099 additions and 17976 deletions

17972
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "@pushrocks/smartbrowser",
"version": "2.0.2",
"version": "2.0.5",
"description": "simplified puppeteer",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
@ -21,14 +21,16 @@
"homepage": "https://gitlab.com/pushrocks/smartbrowser#README",
"dependencies": {
"@pushrocks/smartdelay": "^2.0.13",
"@pushrocks/smartpdf": "^3.0.2",
"@pushrocks/smartpdf": "^3.0.15",
"@pushrocks/smartpuppeteer": "^2.0.0",
"@pushrocks/smartunique": "^3.0.3"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.1.61",
"@gitzone/tsrun": "^1.2.39",
"@gitzone/tstest": "^1.0.69",
"@pushrocks/tapbundle": "^5.0.3"
"@pushrocks/tapbundle": "^5.0.3",
"@types/node": "^18.11.9"
},
"private": false,
"files": [

4085
pnpm-lock.yaml generated Normal file

File diff suppressed because it is too large Load Diff

8
ts/00_commitinfo_data.ts Normal file
View File

@ -0,0 +1,8 @@
/**
* autocreated commitinfo by @pushrocks/commitinfo
*/
export const commitinfo = {
name: '@pushrocks/smartbrowser',
version: '2.0.5',
description: 'simplified puppeteer'
}

View File

@ -30,7 +30,7 @@ export class SmartBrowser {
* create a pdf from page
* @param urlArg
*/
public async pdfFromPage(urlArg: string) {
public async pdfFromPage(urlArg: string): Promise<plugins.smartpdf.IPdf> {
const result = await this.smartpdf.getFullWebsiteAsSinglePdf(urlArg);
return result;
}