Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions .browserslistrc

This file was deleted.

17 changes: 9 additions & 8 deletions CLAUDE.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
# Angular RealWorld Example App
# React RealWorld Example App

## Commands

```bash
bun run setup # Init submodules + install deps (run after clone or after realworld submodule update)
bun run start # Dev server at localhost:4200
bun run test # Unit tests (Vitest)
bun run test:e2e # E2E tests (Playwright)
bun run format # Format code with Prettier
bun run format:check # Check formatting without writing
npm run setup # Init submodules + install deps (run after clone or after realworld submodule update)
npm run start # Dev server at localhost:4200
npm run build # TypeScript check + Vite production build
npm run lint # TypeScript type checking (tsc --noEmit)
npm run test:e2e # E2E tests (Playwright)
npm run format # Format code with Prettier
npm run format:check # Check formatting without writing
```

## Code Style

- Run `bun run format` before presenting code to the user.
- Run `npm run format` before presenting code to the user.

## Debug Interface

Expand Down
88 changes: 0 additions & 88 deletions angular.json

This file was deleted.

12 changes: 8 additions & 4 deletions src/index.html → index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,21 @@
<head>
<meta charset="utf-8" />
<title>Conduit</title>
<base href="/" />

<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="//code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css" rel="stylesheet" type="text/css" />
<link
href="//code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css"
rel="stylesheet"
type="text/css"
/>
<link
href="//fonts.googleapis.com/css?family=Titillium+Web:700|Lora:400,400italic,700,700italic|Source+Sans+Pro:400,300,600,700,300italic,400italic,600italic,700italic"
rel="stylesheet"
type="text/css"
/>
<link rel="stylesheet" href="/realworld/assets/theme/styles.css" />
</head>
<body>
<app-root></app-root>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
Loading