Default to using Bun instead of Node.js.
- Use
bun <file>instead ofnode <file>orts-node <file> - Use
bun testinstead ofjestorvitest - Use
bun build src/index.ts --compile --outfile dist/dropbox-clito build - Use
bun installinstead ofnpm install - Use
bun run <script>instead ofnpm run <script> - Bun automatically loads .env, so don't use dotenv.
Use bun test to run tests.
import { test, expect } from "bun:test";
test("hello world", () => {
expect(1).toBe(1);
});Update CHANGELOG.md when making user-facing changes. Add entries under ## Unreleased grouped by: Added, Fixed, Changed, Removed, Refactored.