Skip to content

Commit

Permalink
Disable the turbo daemon so my laptop stops screaming at me to stop
Browse files Browse the repository at this point in the history
Seems to be caused by vercel/turborepo#8122

Signed-off-by: Matt Strapp <[email protected]>
  • Loading branch information
RosstheRoss committed Oct 31, 2024
1 parent 60f863e commit 0905d34
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
"packageManager": "[email protected]+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee",
"private": true,
"scripts": {
"build": "turbo build",
"clean": "turbo clean && rm -rf node_modules",
"dev": "turbo dev",
"format": "turbo format && prettier --write \"**/*.md\"",
"lint": "turbo lint",
"test": "turbo test",
"publish-packages": "turbo build && bash ./contrib/tag-repo && changeset publish",
"build": "turbo build --no-daemon",
"clean": "turbo clean --no-daemon && rm -rf node_modules",
"dev": "turbo dev --no-daemon",
"format": "turbo format --no-daemon && prettier --write \"**/*.md\"",
"lint": "turbo lint --no-daemon",
"test": "turbo test --no-daemon",
"publish-packages": "turbo build --no-daemon && bash ./contrib/tag-repo && changeset publish",
"versioning": "changeset version && bash ./contrib/version-bump"
}
}

0 comments on commit 0905d34

Please sign in to comment.