crawlee 3.13.9-beta.3 → 3.13.9-beta.4
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.mjs +5 -0
- package/package.json +14 -14
- package/tsconfig.build.tsbuildinfo +1 -1
package/index.mjs
CHANGED
|
@@ -97,6 +97,7 @@ export const SystemStatus = mod.SystemStatus;
|
|
|
97
97
|
export const URL_NO_COMMAS_REGEX = mod.URL_NO_COMMAS_REGEX;
|
|
98
98
|
export const URL_WITH_COMMAS_REGEX = mod.URL_WITH_COMMAS_REGEX;
|
|
99
99
|
export const applySearchParams = mod.applySearchParams;
|
|
100
|
+
export const asyncifyIterable = mod.asyncifyIterable;
|
|
100
101
|
export const browserCrawlerEnqueueLinks = mod.browserCrawlerEnqueueLinks;
|
|
101
102
|
export const browserPoolCookieToToughCookie = mod.browserPoolCookieToToughCookie;
|
|
102
103
|
export const checkAndSerialize = mod.checkAndSerialize;
|
|
@@ -104,6 +105,7 @@ export const checkStorageAccess = mod.checkStorageAccess;
|
|
|
104
105
|
export const cheerioCrawlerEnqueueLinks = mod.cheerioCrawlerEnqueueLinks;
|
|
105
106
|
export const chunk = mod.chunk;
|
|
106
107
|
export const chunkBySize = mod.chunkBySize;
|
|
108
|
+
export const chunkedAsyncIterable = mod.chunkedAsyncIterable;
|
|
107
109
|
export const constructGlobObjectsFromGlobs = mod.constructGlobObjectsFromGlobs;
|
|
108
110
|
export const constructRegExpObjectsFromPseudoUrls = mod.constructRegExpObjectsFromPseudoUrls;
|
|
109
111
|
export const constructRegExpObjectsFromRegExps = mod.constructRegExpObjectsFromRegExps;
|
|
@@ -141,8 +143,10 @@ export const getRequestId = mod.getRequestId;
|
|
|
141
143
|
export const gotScraping = mod.gotScraping;
|
|
142
144
|
export const handleRequestTimeout = mod.handleRequestTimeout;
|
|
143
145
|
export const htmlToText = mod.htmlToText;
|
|
146
|
+
export const isAsyncIterable = mod.isAsyncIterable;
|
|
144
147
|
export const isContainerized = mod.isContainerized;
|
|
145
148
|
export const isDocker = mod.isDocker;
|
|
149
|
+
export const isIterable = mod.isIterable;
|
|
146
150
|
export const isLambda = mod.isLambda;
|
|
147
151
|
export const keys = mod.keys;
|
|
148
152
|
export const launchPlaywright = mod.launchPlaywright;
|
|
@@ -153,6 +157,7 @@ export const maybeStringify = mod.maybeStringify;
|
|
|
153
157
|
export const mergeCookies = mod.mergeCookies;
|
|
154
158
|
export const parseOpenGraph = mod.parseOpenGraph;
|
|
155
159
|
export const parseSitemap = mod.parseSitemap;
|
|
160
|
+
export const peekableAsyncIterable = mod.peekableAsyncIterable;
|
|
156
161
|
export const playwrightClickElements = mod.playwrightClickElements;
|
|
157
162
|
export const playwrightUtils = mod.playwrightUtils;
|
|
158
163
|
export const processHttpRequestOptions = mod.processHttpRequestOptions;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "crawlee",
|
|
3
|
-
"version": "3.13.9-beta.
|
|
3
|
+
"version": "3.13.9-beta.4",
|
|
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": ">=16.0.0"
|
|
@@ -54,18 +54,18 @@
|
|
|
54
54
|
"access": "public"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@crawlee/basic": "3.13.9-beta.
|
|
58
|
-
"@crawlee/browser": "3.13.9-beta.
|
|
59
|
-
"@crawlee/browser-pool": "3.13.9-beta.
|
|
60
|
-
"@crawlee/cheerio": "3.13.9-beta.
|
|
61
|
-
"@crawlee/cli": "3.13.9-beta.
|
|
62
|
-
"@crawlee/core": "3.13.9-beta.
|
|
63
|
-
"@crawlee/http": "3.13.9-beta.
|
|
64
|
-
"@crawlee/jsdom": "3.13.9-beta.
|
|
65
|
-
"@crawlee/linkedom": "3.13.9-beta.
|
|
66
|
-
"@crawlee/playwright": "3.13.9-beta.
|
|
67
|
-
"@crawlee/puppeteer": "3.13.9-beta.
|
|
68
|
-
"@crawlee/utils": "3.13.9-beta.
|
|
57
|
+
"@crawlee/basic": "3.13.9-beta.4",
|
|
58
|
+
"@crawlee/browser": "3.13.9-beta.4",
|
|
59
|
+
"@crawlee/browser-pool": "3.13.9-beta.4",
|
|
60
|
+
"@crawlee/cheerio": "3.13.9-beta.4",
|
|
61
|
+
"@crawlee/cli": "3.13.9-beta.4",
|
|
62
|
+
"@crawlee/core": "3.13.9-beta.4",
|
|
63
|
+
"@crawlee/http": "3.13.9-beta.4",
|
|
64
|
+
"@crawlee/jsdom": "3.13.9-beta.4",
|
|
65
|
+
"@crawlee/linkedom": "3.13.9-beta.4",
|
|
66
|
+
"@crawlee/playwright": "3.13.9-beta.4",
|
|
67
|
+
"@crawlee/puppeteer": "3.13.9-beta.4",
|
|
68
|
+
"@crawlee/utils": "3.13.9-beta.4",
|
|
69
69
|
"import-local": "^3.1.0",
|
|
70
70
|
"tslib": "^2.4.0"
|
|
71
71
|
},
|
|
@@ -88,5 +88,5 @@
|
|
|
88
88
|
}
|
|
89
89
|
}
|
|
90
90
|
},
|
|
91
|
-
"gitHead": "
|
|
91
|
+
"gitHead": "9acab99afe77011fdfa5ab5ced0e75ed16ce1c9e"
|
|
92
92
|
}
|