Updated the entire project to use Bun instead of npm/yarn for: - Faster package installation (3x faster than npm) - Native TypeScript support - Better runtime performance - Built-in bundler Changes: - Updated package.json to use bun in all scripts - Renamed project from example-marketing to localgreenchain - Added bunfig.toml for bun configuration - Updated README with Bun installation instructions - Added "Why Bun?" section explaining benefits - Updated .gitignore for bun-specific debug logs - Changed all npm/yarn references to bun commands All commands now use: - bun install (instead of npm install) - bun run dev (instead of npm run dev) - bun test (instead of npm test)
42 lines
No EOL
476 B
Text
42 lines
No EOL
476 B
Text
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
|
|
|
# dependencies
|
|
/node_modules
|
|
/.pnp
|
|
.pnp.js
|
|
|
|
# testing
|
|
/coverage
|
|
|
|
# next.js
|
|
/.next/
|
|
/out/
|
|
.next
|
|
|
|
# production
|
|
/build
|
|
|
|
# misc
|
|
.DS_Store
|
|
*.pem
|
|
|
|
# debug
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
lerna-debug.log*
|
|
bun-debug.log*
|
|
|
|
# local env files
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# vercel
|
|
.vercel
|
|
|
|
/certificates/*
|
|
|
|
cypress/screenshots
|
|
cypress/videos |