From 5f1b4ed224ede7f82aea42558cbd09ba6cd38c2b Mon Sep 17 00:00:00 2001 From: Azalea Colburn Date: Thu, 22 Aug 2024 11:54:39 -0700 Subject: [PATCH] i think maybe eslint and prettier disagree :( --- fission/package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/fission/package.json b/fission/package.json index 428df4a42..6423349f3 100644 --- a/fission/package.json +++ b/fission/package.json @@ -13,11 +13,11 @@ "test": "vitest", "lint": "eslint . --ext ts,tsx --report-unused-disable-directives", "lint:fix": "eslint . --ext ts,tsx --report-unused-disable-directives --fix", - "prettier": "(bun x prettier src --check) || (npx prettier src --check)", - "prettier:fix": "(bun x prettier src --write) || (npx prettier src --write)", - "format": "(bun run prettier:fix && bun run lint:fix) || (npm run prettier:fix && npm run lint:fix)", + "prettier": "bun x prettier src --check || npx prettier src --check", + "prettier:fix": "bun x prettier src --write || npx prettier src --write", + "format": "bun run prettier:fix && bun run lint:fix || npm run prettier:fix && npm run lint:fix", "assetpack": "curl -o public/assetpack.zip https://synthesis.autodesk.com/Downloadables/assetpack.zip && tar -xf public/assetpack.zip -C public/", - "playwright:install": "(bun x playwright install || npx playwright install)" + "playwright:install": "bun x playwright install || npx playwright install" }, "dependencies": { "@barclah/jolt-physics": "^0.24.1",