Chore: Fix yarn dev (#1501)

* Chore: upgrade turbo & fix yarn dev
This commit is contained in:
Justin Halsall
2026-04-01 12:00:00 +08:00
committed by GitHub
parent ef75ce0198
commit fdac07d52e
5 changed files with 82 additions and 90 deletions

View File

@@ -1,4 +1,5 @@
{
"name": "@rrweb/_monorepo",
"description": "record and replay the web",
"repository": {
"type": "git",
@@ -22,6 +23,7 @@
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@monorepo-utils/workspaces-to-typescript-project-references": "^2.8.2",
"@types/prettier": "2.7.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"browserslist": "^4.22.1",
@@ -34,7 +36,7 @@
"markdownlint": "^0.25.1",
"markdownlint-cli": "^0.31.1",
"prettier": "2.8.4",
"turbo": "^1.2.4",
"turbo": "^2.0.3",
"typescript": "^4.9.5"
},
"scripts": {
@@ -45,7 +47,7 @@
"check-types": "yarn turbo run check-types --continue",
"format": "yarn prettier --write '**/*.{ts,md}'",
"format:head": "git diff --name-only HEAD^ |grep '\\.ts$\\|\\.md$' |xargs yarn prettier --write",
"dev": "yarn turbo run dev",
"dev": "CLEAR_DIST_DIR=false yarn turbo run dev --concurrency=17",
"repl": "cd packages/rrweb && npm run repl",
"live-stream": "cd packages/rrweb && yarn live-stream",
"lint": "yarn run concurrently --success=all -r -m=1 'yarn run markdownlint docs' 'yarn eslint packages/*/src --ext .ts,.tsx,.js,.jsx,.svelte'",
@@ -59,5 +61,6 @@
"browserslist": [
"defaults",
"not op_mini all"
]
],
"packageManager": "yarn@1.22.19"
}