From 9fffcc4034ca5c1ec54fee2c390a4ab483764404 Mon Sep 17 00:00:00 2001 From: mo Date: Mon, 20 Apr 2026 15:24:48 +0200 Subject: [PATCH] remove CLAUDE.md --- adapters/discord/CLAUDE.md | 106 ------------------------------------- 1 file changed, 106 deletions(-) delete mode 100644 adapters/discord/CLAUDE.md diff --git a/adapters/discord/CLAUDE.md b/adapters/discord/CLAUDE.md deleted file mode 100644 index 764c1dd..0000000 --- a/adapters/discord/CLAUDE.md +++ /dev/null @@ -1,106 +0,0 @@ - -Default to using Bun instead of Node.js. - -- Use `bun ` instead of `node ` or `ts-node ` -- Use `bun test` instead of `jest` or `vitest` -- Use `bun build ` instead of `webpack` or `esbuild` -- Use `bun install` instead of `npm install` or `yarn install` or `pnpm install` -- Use `bun run - - -``` - -With the following `frontend.tsx`: - -```tsx#frontend.tsx -import React from "react"; -import { createRoot } from "react-dom/client"; - -// import .css files directly and it works -import './index.css'; - -const root = createRoot(document.body); - -export default function Frontend() { - return

Hello, world!

; -} - -root.render(); -``` - -Then, run index.ts - -```sh -bun --hot ./index.ts -``` - -For more information, read the Bun API docs in `node_modules/bun-types/docs/**.mdx`.