Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update package.json #253

Closed
wants to merge 2 commits into from
Closed
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: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
"name": "@meshsdk/root",
"private": true,
"scripts": {
"build": "turbo build --concurrency 15",
"dev": "turbo dev --concurrency 15",
"build": "npm run build:mesh && npm run build:apps && npm run build:docs",
"dev": "turbo dev --concurrency 20",
"lint": "turbo lint",
"format": "turbo run format --continue -- --cache --cache-location node_modules/.cache/.prettiercache",
"format:fix": "turbo run format --continue -- --write --cache --cache-location node_modules/.cache/.prettiercache",
"test": "turbo test",
"clean": "turbo run clean && rm -rf .turbo && rm -rf dist && rm -rf node_modules && rm package-lock.json",
"build:apps": "turbo run build:apps",
"build:docs": "turbo run build:docs",
"build:mesh": "turbo run build:mesh",
"build:apps": "turbo run build:apps --concurrency 20",
"build:docs": "turbo run build:docs --concurrency 20",
"build:mesh": "turbo run build:mesh --concurrency 20",
"sh:version": "sh scripts/bump-version.sh"
},
"devDependencies": {
Expand All @@ -22,7 +22,7 @@
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"turbo": "latest"
"turbo": "^2.0.11"
},
"engines": {
"node": ">=18"
Expand Down