Skip to content

Commit

Permalink
turbo: don't run the daemon - we don't need it
Browse files Browse the repository at this point in the history
  • Loading branch information
av8ta committed May 25, 2024
1 parent 40f6af3 commit 393a2cb
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
@@ -1,14 +1,14 @@
{
"private": true,
"scripts": {
"build": "turbo run build --cache-dir=.turbo",
"dev": "turbo run dev",
"serve": "turbo run serve",
"test": "turbo run test",
"build": "turbo run build --cache-dir=.turbo --no-daemon",
"dev": "turbo run dev --no-daemon",
"serve": "turbo run serve --no-daemon",
"test": "turbo run test --no-daemon",
"test:rust": "cd packages/cadmium && cargo test",
"clean": "turbo run clean",
"lint": "turbo run lint",
"format": "turbo run format",
"clean": "turbo run clean --no-daemon",
"lint": "turbo run lint --no-daemon",
"format": "turbo run format --no-daemon",
"build:wasm:dev": "wasm-pack build --target web packages/cadmium --dev --no-typescript",
"build:wasm": "wasm-pack build --target web packages/cadmium && ./packages/cadmium/patchpackage.cjs"
},
Expand Down

0 comments on commit 393a2cb

Please sign in to comment.