-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
eaee75c
commit faf0f4f
Showing
34 changed files
with
11,526 additions
and
19,035 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,3 +27,5 @@ apify_storage | |
crawlee_storage | ||
storage | ||
.turbo | ||
.tshy | ||
.tshy-build |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,10 +2,6 @@ | |
"name": "apify-sdk-js", | ||
"private": true, | ||
"description": "Apify SDK monorepo", | ||
"workspaces": [ | ||
"packages/*", | ||
"packages/actor-scraper/*" | ||
], | ||
"keywords": [ | ||
"apify", | ||
"headless", | ||
|
@@ -55,6 +51,7 @@ | |
"@apify/tsconfig": "^0.1.0", | ||
"@commitlint/config-conventional": "^19.2.2", | ||
"@playwright/browser-chromium": "^1.46.0", | ||
"@total-typescript/tsconfig": "^1.0.4", | ||
"@types/content-type": "^1.1.8", | ||
"@types/fs-extra": "^11.0.4", | ||
"@types/node": "^22.1.0", | ||
|
@@ -74,11 +71,17 @@ | |
"playwright": "^1.46.0", | ||
"puppeteer": "^22.15.0", | ||
"rimraf": "^6.0.1", | ||
"tshy": "^3.0.2", | ||
"tsx": "^4.16.5", | ||
"turbo": "2.1.1", | ||
"typescript": "~5.5.4", | ||
"vite-tsconfig-paths": "^4.3.2", | ||
"vitest": "^2.0.5" | ||
}, | ||
"packageManager": "[email protected]" | ||
"packageManager": "[email protected]+sha512.60c18acd138bff695d339be6ad13f7e936eea6745660d4cc4a776d5247c540d0edee1a563695c183a66eb917ef88f2b4feb1fc25f32a7adcadc7aaf3438e99c1", | ||
"pnpm": { | ||
"patchedDependencies": { | ||
"@crawlee/[email protected]": "patches/@[email protected]" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,31 @@ | ||
export * from './actor'; | ||
export * from './configuration'; | ||
export * from './proxy_configuration'; | ||
export * from './platform_event_manager'; | ||
export * from './key_value_store'; | ||
export * from './actor.js'; | ||
export * from './configuration.js'; | ||
export * from './proxy_configuration.js'; | ||
export * from './platform_event_manager.js'; | ||
export * from './key_value_store.js'; | ||
export { | ||
Dataset, DatasetDataOptions, DatasetIteratorOptions, DatasetConsumer, DatasetMapper, DatasetReducer, DatasetOptions, DatasetContent, | ||
RequestQueue, QueueOperationInfo, RequestQueueOperationOptions, RequestQueueOptions, | ||
KeyConsumer, KeyValueStoreOptions, RecordOptions, KeyValueStoreIteratorOptions, log, Log, LoggerOptions, LogLevel, Logger, LoggerJson, LoggerText, | ||
Dataset, | ||
type DatasetDataOptions, | ||
type DatasetIteratorOptions, | ||
type DatasetConsumer, | ||
type DatasetMapper, | ||
type DatasetReducer, | ||
type DatasetOptions, | ||
type DatasetContent, | ||
RequestQueue, | ||
type QueueOperationInfo, | ||
type RequestQueueOperationOptions, | ||
type RequestQueueOptions, | ||
type KeyConsumer, | ||
type KeyValueStoreOptions, | ||
type RecordOptions, | ||
type KeyValueStoreIteratorOptions, | ||
log, | ||
Log, | ||
type LoggerOptions, | ||
LogLevel, | ||
Logger, | ||
LoggerJson, | ||
LoggerText, | ||
} from '@crawlee/core'; | ||
export { ApifyClient, ApifyClientOptions } from 'apify-client'; | ||
export { ApifyClient, type ApifyClientOptions } from 'apify-client'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
/* eslint-disable @typescript-eslint/no-var-requires */ | ||
const ow = require('ow'); | ||
|
||
export default ow; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
// https://github.com/isaacs/tshy?tab=readme-ov-file#commonjs-dialect-polyfills | ||
// @ts-ignore | ||
import ow from 'ow'; | ||
|
||
export default ow; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"extends": "../../tsconfig.json", | ||
"include": ["src/**/*"] | ||
"extends": "../../tsconfig.json", | ||
"include": ["src/**/*"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import Ajv from 'ajv'; | ||
|
||
export default Ajv; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import AjvModule from 'ajv'; | ||
|
||
// @ts-ignore | ||
const Ajv = AjvModule.default; | ||
|
||
export default Ajv; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.