Skip to content

Commit

Permalink
🔨 Use bunx instead of bun run
Browse files Browse the repository at this point in the history
  • Loading branch information
siguici committed Oct 20, 2023
1 parent 917c5a7 commit 89b47b0
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,25 +18,25 @@
"url": "https://sigui.ci"
},
"scripts": {
"build": "bun run --bun vite build",
"check": "bun run --bun biome ci .",
"check.format": "bun run --bun biome format .",
"check.lint": "bun run --bun biome check .",
"build": "bunx vite build",
"check": "bunx biome ci .",
"check.format": "bunx biome format .",
"check.lint": "bunx biome check .",
"debug": "bun run check && bun run test && bun run e2e",
"dev": "bun run --bun vite",
"e2e": "bun run --bun playwright test",
"e2e.install": "bun run --bun playwright install --with-deps",
"e2e.report": "bun run --bun playwright show-report",
"e2e.ui": "bun run --bun playwright test --ui",
"dev": "bunx vite",
"e2e": "bunx playwright test",
"e2e.install": "bunx playwright install --with-deps",
"e2e.report": "bunx playwright show-report",
"e2e.ui": "bunx playwright test --ui",
"fix": "bun run lint && bun run format",
"format": "bun run --bun biome format --write .",
"format": "bunx biome format --write .",
"inspect": "bun --inspect-brk ./node_modules/vite/bin/vite.js --force",
"lint": "bun run --bun biome check --apply-unsafe .",
"lint": "bunx biome check --apply-unsafe .",
"test": "bun test",
"test.cov": "bun test --coverage",
"test.hot": "bun test --hot",
"test.watch": "bun test --watch",
"start": "bun run --bun vite --open"
"start": "bunx vite --open"
},
"devDependencies": {
"@alpinejs/focus": "^3.13.1",
Expand Down

0 comments on commit 89b47b0

Please sign in to comment.