Skip to content

Commit

Permalink
i think maybe eslint and prettier disagree :(
Browse files Browse the repository at this point in the history
  • Loading branch information
azaleacolburn committed Aug 22, 2024
1 parent 3c358e4 commit 5f1b4ed
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions fission/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 5f1b4ed

Please sign in to comment.