Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
},
"homepage": "https://crawlee.dev",
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepublishOnly": "turbo run copy --filter=./packages/*",
"clean": "turbo run clean --filter=./packages/* && rimraf .turbo packages/*/.turbo packages/*/*.tsbuildinfo",
"build": "turbo run build --filter=./packages/* && node ./scripts/typescript_fixes.mjs",
Expand Down Expand Up @@ -119,9 +118,16 @@
"oxfmt --write --no-error-on-unmatched-pattern"
]
},
"packageManager": "pnpm@10.24.0",
"packageManager": "pnpm@11.0.9",
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "11.0.9",
"onFail": "error"
}
},
"volta": {
"node": "24.13.0",
"pnpm": "10.24.0"
"pnpm": "11.0.9"
}
}
2 changes: 1 addition & 1 deletion packages/stagehand-crawler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "3.16.0",
"description": "AI-powered web crawling with Stagehand integration for Crawlee - enables natural language browser automation with act(), extract(), and observe() methods.",
"engines": {
"node": ">=16.0.0"
"node": ">=22.0.0"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
Expand Down
4 changes: 1 addition & 3 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

35 changes: 21 additions & 14 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,27 @@ overrides:
minimatch: "^9.0.0"
"lerna>minimatch": "^3.1.4"

onlyBuiltDependencies:
- "@apify/ui-icons"
- "@playwright/browser-chromium"
- "@playwright/browser-firefox"
- "@playwright/browser-webkit"
- "@swc/core"
- better-sqlite3
- bufferutil
- core-js
- esbuild
- nx
- protobufjs
- puppeteer
- unrs-resolver
# pnpm 11 replaces `onlyBuiltDependencies` with an explicit `allowBuilds` map.
# Each entry must be true (build allowed) or false (build skipped) — pnpm 11
# refuses to install if any dep needs a build decision that isn't in the map
# (combined with `strictDepBuilds: false` below so the install can still
# proceed when new build-requesting deps appear without a manual entry).
allowBuilds:
"@apify/ui-icons": true
"@playwright/browser-chromium": true
"@playwright/browser-firefox": true
"@playwright/browser-webkit": true
"@swc/core": true
better-sqlite3: true
bufferutil: true
core-js: true
esbuild: true
nx: true
protobufjs: true
puppeteer: true
unrs-resolver: true

strictDepBuilds: false

nodeLinker: hoisted
linkWorkspacePackages: true
Expand Down
Loading