Skip to content

Commit 69290fc

Browse files
committed
chore: Add keywords, remove Remix references
1 parent 4953796 commit 69290fc

5 files changed

Lines changed: 20 additions & 10 deletions

File tree

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Refer to the README.md for information about this repository.
44

55
## Project Structure & Module Organization
6-
`create/` contains the Node-based scaffold (`index.js` normalizes CLI options, `main.js` mutates the template). `template/` ships the starter monorepo with workspaces such as `api/` for backend endpoints, `mock-backend/` and `mock-data/` for fixtures, `prototype/` for the Remix reference app, `ui/` for shared components, and `docs/` for the Antora documentation site. Shared lint and TS configs live in `template/config/`, and bootstrap assets for generated apps sit under `template/remix.init/`.
6+
`create/` contains the Node-based scaffold (`index.js` normalizes CLI options, `main.js` mutates the template). `template/` ships the starter monorepo with workspaces such as `api/` for backend endpoints, `mock-backend/` and `mock-data/` for fixtures, `prototype/` for the prototype app, `ui/` for shared components, and `docs/` for the Antora documentation site. Shared lint and TS configs live in `template/config/`, and bootstrap assets for generated apps sit under `template`.
77

88
## Build, Test & Development Commands
99
Use Node 22+. Run `npm install` at the repo root before touching the CLI. Template work happens inside `template/`: `npm install` for dependencies, `npm run dev` to launch Turbo-powered development, `npm run build` for a production check, `npm run typecheck` for repository-wide TypeScript validation, `npm run test` to execute Vitest suites, and `npm run format` to apply Prettier across Markdown and TypeScript files.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Frontend Monorepo for Rapid Prototyping
22

3-
This is a [npm Template](https://remix.run/docs/en/main/guides/templates) for a Frontend Monorepo.
3+
This is a npm Template for a Frontend Monorepo.
44

55
It puts emphasis on rapid prototyping and a prototype-driven development
66
([Pixar Planning](https://www.youtube.com/watch?v=gbuWJ48T0bE&t=1294s)).

package.json

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,22 @@
1010
"engines": {
1111
"node": ">=22.3.0"
1212
},
13+
"keywords": [
14+
"tinker-stack",
15+
"react",
16+
"monorepo",
17+
"starter",
18+
"template",
19+
"typescript",
20+
"turborepo",
21+
"prototype",
22+
"prototyping",
23+
"msw",
24+
"faker",
25+
"frontend",
26+
"scaffold",
27+
"create-tinker-stack"
28+
],
1329
"scripts": {
1430
"release": "commit-and-tag-version",
1531
"test": "npm run test:e2e",
@@ -24,4 +40,4 @@
2440
"commit-and-tag-version": "^12.6.0",
2541
"vitest": "^4.0.9"
2642
}
27-
}
43+
}

template/prototype/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Die Daten werden mit dem Mock-Daten-Generator erzeugt.
1515

1616
## Entwicklung
1717

18-
Sie können Ihre SPA-App wie eine normale Remix-App entwickeln, mit:
18+
Der Prototyp mit dem Mock-Server kann mit folgendem Befehl gestartet werden:
1919

2020
```shellscript
2121
npm run dev

template/prototype/app/entry.client.tsx

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
/**
2-
* By default, Remix will handle hydrating your app on the client for you.
3-
* You are free to delete this file if you'd like to, but if you ever want it revealed again, you can run `npx remix reveal` ✨
4-
* For more information, see https://remix.run/file-conventions/entry.client
5-
*/
6-
71
import { startTransition, StrictMode } from 'react';
82
import { hydrateRoot } from 'react-dom/client';
93
import { HydratedRouter } from 'react-router/dom';

0 commit comments

Comments
 (0)