Skip to content

Commit

Permalink
replace pnpm with bun in package.json scripts; remove pnpm-lock.yaml;…
Browse files Browse the repository at this point in the history
… add bun.lockb for package management consistency
  • Loading branch information
edheltzel committed Dec 8, 2024
1 parent 3386eb6 commit 55fe267
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2,955 deletions.
Binary file added bun.lockb
Binary file not shown.
9 changes: 4 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,19 +34,18 @@
],
"browserslist": "> 0.2% and not dead",
"scripts": {
"dev": "pnpm run clean && pnpm run start",
"dev": "bun run clean && bun run start",
"start": "eleventy --serve",
"build": "ENV=prod eleventy",
"debug": "DEBUG=Eleventy* eleventy",
"deploy": "wrangler pages deploy dist --project-name my-flightdeck --commit-message \"local build & deploy\"",
"preview": "pnpm run clean && pnpm run build && pnpx http-server dist -p 54321",
"preview": "bun run clean && bun run build && bunx http-server dist -p 54321",
"check": "biome check",
"format": "biome format --",
"lint": "biome lint --",
"clean": "./.scrub.sh site",
"purge": "./.scrub.sh purge",
"upgrade": "pnpx npm-check-updates -ui",
"upgrade": "bunx npm-check-updates -ui",
"release": "gh release create v$npm_package_version --generate-notes --latest"
},
"packageManager": "[email protected]+sha512.e5a7e52a4183a02d5931057f7a0dbff9d5e9ce3161e33fa68ae392125b79282a8a8a470a51dfc8a0ed86221442eb2fb57019b0990ed24fab519bf0e1bc5ccfc4"
}
}
Loading

0 comments on commit 55fe267

Please sign in to comment.