crawlee 4.0.0-beta.122 → 4.0.0-beta.124
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/index.d.ts +0 -2
- package/index.js +1 -2
- package/package.json +16 -16
package/index.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { enqueueLinks } from '@crawlee/core';
|
|
2
1
|
import { playwrightUtils } from '@crawlee/playwright';
|
|
3
2
|
import { puppeteerUtils } from '@crawlee/puppeteer';
|
|
4
3
|
import { downloadListOfUrls, parseOpenGraph, sleep, social } from '@crawlee/utils';
|
|
@@ -19,7 +18,6 @@ export declare const utils: {
|
|
|
19
18
|
playwright: typeof playwrightUtils;
|
|
20
19
|
// @ts-ignore optional peer dependency or compatibility with es2022
|
|
21
20
|
log: import("@apify/log").Log;
|
|
22
|
-
enqueueLinks: typeof enqueueLinks;
|
|
23
21
|
social: typeof social;
|
|
24
22
|
sleep: typeof sleep;
|
|
25
23
|
downloadListOfUrls: typeof downloadListOfUrls;
|
package/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { log } from '@crawlee/core';
|
|
2
2
|
import { playwrightUtils } from '@crawlee/playwright';
|
|
3
3
|
import { puppeteerUtils } from '@crawlee/puppeteer';
|
|
4
4
|
import { downloadListOfUrls, parseOpenGraph, sleep, social } from '@crawlee/utils';
|
|
@@ -18,7 +18,6 @@ export const utils = {
|
|
|
18
18
|
puppeteer: puppeteerUtils,
|
|
19
19
|
playwright: playwrightUtils,
|
|
20
20
|
log,
|
|
21
|
-
enqueueLinks,
|
|
22
21
|
social,
|
|
23
22
|
sleep,
|
|
24
23
|
downloadListOfUrls,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "crawlee",
|
|
3
|
-
"version": "4.0.0-beta.
|
|
3
|
+
"version": "4.0.0-beta.124",
|
|
4
4
|
"description": "The scalable web crawling and scraping library for JavaScript/Node.js. Enables development of data extraction and web automation jobs (not only) with headless Chrome and Puppeteer.",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=22.0.0"
|
|
@@ -48,20 +48,20 @@
|
|
|
48
48
|
"access": "public"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@crawlee/basic": "4.0.0-beta.
|
|
52
|
-
"@crawlee/browser": "4.0.0-beta.
|
|
53
|
-
"@crawlee/browser-pool": "4.0.0-beta.
|
|
54
|
-
"@crawlee/cheerio": "4.0.0-beta.
|
|
55
|
-
"@crawlee/cli": "4.0.0-beta.
|
|
56
|
-
"@crawlee/core": "4.0.0-beta.
|
|
57
|
-
"@crawlee/fs-storage": "4.0.0-beta.
|
|
58
|
-
"@crawlee/http": "4.0.0-beta.
|
|
59
|
-
"@crawlee/impit-client": "4.0.0-beta.
|
|
60
|
-
"@crawlee/jsdom": "4.0.0-beta.
|
|
61
|
-
"@crawlee/linkedom": "4.0.0-beta.
|
|
62
|
-
"@crawlee/playwright": "4.0.0-beta.
|
|
63
|
-
"@crawlee/puppeteer": "4.0.0-beta.
|
|
64
|
-
"@crawlee/utils": "4.0.0-beta.
|
|
51
|
+
"@crawlee/basic": "4.0.0-beta.124",
|
|
52
|
+
"@crawlee/browser": "4.0.0-beta.124",
|
|
53
|
+
"@crawlee/browser-pool": "4.0.0-beta.124",
|
|
54
|
+
"@crawlee/cheerio": "4.0.0-beta.124",
|
|
55
|
+
"@crawlee/cli": "4.0.0-beta.124",
|
|
56
|
+
"@crawlee/core": "4.0.0-beta.124",
|
|
57
|
+
"@crawlee/fs-storage": "4.0.0-beta.124",
|
|
58
|
+
"@crawlee/http": "4.0.0-beta.124",
|
|
59
|
+
"@crawlee/impit-client": "4.0.0-beta.124",
|
|
60
|
+
"@crawlee/jsdom": "4.0.0-beta.124",
|
|
61
|
+
"@crawlee/linkedom": "4.0.0-beta.124",
|
|
62
|
+
"@crawlee/playwright": "4.0.0-beta.124",
|
|
63
|
+
"@crawlee/puppeteer": "4.0.0-beta.124",
|
|
64
|
+
"@crawlee/utils": "4.0.0-beta.124",
|
|
65
65
|
"import-local": "^3.2.0",
|
|
66
66
|
"tslib": "^2.8.1"
|
|
67
67
|
},
|
|
@@ -88,5 +88,5 @@
|
|
|
88
88
|
}
|
|
89
89
|
}
|
|
90
90
|
},
|
|
91
|
-
"gitHead": "
|
|
91
|
+
"gitHead": "0694ee1b94c755b98141671baa93cc363f2bf8e3"
|
|
92
92
|
}
|