Jordan Sexton пре 2 година
родитељ
комит
6f2dfe5152
1 измењених фајлова са 3 додато и 3 уклоњено
  1. 3 3
      package.json

+ 3 - 3
package.json

@@ -15,15 +15,15 @@
         "reinstall": "pnpm run nuke && pnpm install",
         "clean": "pnpm --recursive --workspace-concurrency=0 run clean && shx rm -rf **/*.tsbuildinfo",
         "ts": "pnpm run build:ts",
-        "build": "turbo run build",
+        "build": "turbo run build --concurrency=100%",
         "build:clean": "pnpm run clean && pnpm run build",
         "release": "pnpm run build:clean && pnpm test && changeset publish && git push --follow-tags && git status",
         "watch": "pnpm run watch:ts",
         "watch:ts": "tsc --build --verbose --watch tsconfig.all.json",
         "fmt": "prettier --write '{*,**/*}.{ts,tsx,js,jsx,json}'",
-        "lint": "turbo run lint",
+        "lint": "turbo run lint --concurrency=100%",
         "lint:fix": "pnpm run fmt && eslint --fix .",
-        "test": "turbo run test",
+        "test": "turbo run test --concurrency=100%",
         "deploy": "pnpm run deploy:docs && pnpm run deploy:example",
         "docs": "shx rm -rf docs && NODE_OPTIONS=--max_old_space_size=16000 typedoc && shx cp ./{.nojekyll,wallets.png} docs/",
         "deploy:docs": "pnpm run docs && gh-pages --dist docs --dotfiles",