-
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.
chore: support got-scraping v4 (#233)
* chore: support got-scraping v4 * chore: i am in pain * chore: bump crawlee * chore: move to vitest * chore: lint * chore: son of a gun * chore: hallelujah it passes --------- Co-authored-by: Martin Adámek <[email protected]>
- Loading branch information
1 parent
681e35b
commit 661192a
Showing
34 changed files
with
2,150 additions
and
3,134 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
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 |
---|---|---|
|
@@ -39,9 +39,9 @@ | |
"clean": "turbo run clean", | ||
"build": "turbo run build", | ||
"ci:build": "turbo run build --cache-dir=\".turbo\"", | ||
"test": "jest --silent", | ||
"test": "vitest run --silent", | ||
"test:e2e": "node test/e2e/run.mjs", | ||
"coverage": "jest --coverage", | ||
"coverage": "vitest --coverage", | ||
"release": "npm run build && lerna publish from-package --contents dist", | ||
"publish:next": "lerna publish --canary --preid beta --dist-tag next", | ||
"release:next": "npm run build && npm run publish:next", | ||
|
@@ -50,37 +50,36 @@ | |
}, | ||
"devDependencies": { | ||
"@apify/consts": "^2.20.0", | ||
"@apify/eslint-config-ts": "^0.3.0", | ||
"@apify/eslint-config-ts": "^0.4.1", | ||
"@apify/input_secrets": "^1.1.32", | ||
"@apify/tsconfig": "^0.1.0", | ||
"@commitlint/config-conventional": "^18.0.0", | ||
"@playwright/browser-chromium": "^1.39.0", | ||
"@types/content-type": "^1.1.5", | ||
"@types/fs-extra": "^11.0.1", | ||
"@types/jest": "^29.5.3", | ||
"@types/node": "^20.4.2", | ||
"@types/rimraf": "^4.0.5", | ||
"@types/semver": "^7.5.0", | ||
"@types/tough-cookie": "^4.0.2", | ||
"@types/ws": "^8.5.5", | ||
"@typescript-eslint/eslint-plugin": "^6.2.0", | ||
"@typescript-eslint/parser": "^6.2.0", | ||
"@typescript-eslint/eslint-plugin": "^6.12.0", | ||
"@typescript-eslint/parser": "^6.12.0", | ||
"commitlint": "^18.0.0", | ||
"crawlee": "^3.5.3", | ||
"eslint": "^8.45.0", | ||
"crawlee": "^3.6.1", | ||
"eslint": "^8.54.0", | ||
"fs-extra": "^11.1.1", | ||
"gen-esm-wrapper": "^1.1.3", | ||
"husky": "^8.0.3", | ||
"jest": "^29.6.1", | ||
"lerna": "^7.1.5", | ||
"lint-staged": "^15.0.0", | ||
"playwright": "^1.39.0", | ||
"puppeteer": "^21.3.8", | ||
"rimraf": "^5.0.1", | ||
"ts-jest": "^29.1.1", | ||
"ts-node": "^10.9.1", | ||
"turbo": "1.10.16", | ||
"typescript": "~5.2.0", | ||
"vite-tsconfig-paths": "^4.2.1", | ||
"vitest": "^0.34.6", | ||
"ws": "^7.5.9" | ||
}, | ||
"packageManager": "[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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
import { runActor } from '@apify/scraper-tools'; | ||
|
||
import { CrawlerSetup } from './internals/crawler_setup.js'; | ||
|
||
runActor(CrawlerSetup); |
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,4 +1,5 @@ | ||
import { runActor } from '@apify/scraper-tools'; | ||
|
||
import { CrawlerSetup } from './internals/crawler_setup.js'; | ||
|
||
runActor(CrawlerSetup); |
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,4 +1,5 @@ | ||
import { runActor } from '@apify/scraper-tools'; | ||
|
||
import { CrawlerSetup } from './internals/crawler_setup.js'; | ||
|
||
runActor(CrawlerSetup); |
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,4 +1,5 @@ | ||
import { runActor } from '@apify/scraper-tools'; | ||
|
||
import { CrawlerSetup } from './internals/crawler_setup.js'; | ||
|
||
runActor(CrawlerSetup); |
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,4 +1,5 @@ | ||
import { runActor } from '@apify/scraper-tools'; | ||
|
||
import { CrawlerSetup } from './internals/crawler_setup.js'; | ||
|
||
runActor(CrawlerSetup); |
Oops, something went wrong.