8 |
Standard Headings:
9 |
Hero text
10 |
Global/standard H1
11 |
Global/standard H2
12 |
Global/standard H3
13 |
Global/standard H4
14 |
.txt--primary (default)
15 |
.txt--secondary
16 |
17 | .txt--accent
(use only over dark colors)
18 |
19 |
20 | .txt--contrast
(use only over dark colors)
21 |
22 |
23 | );
24 | }
25 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "beer-geek-menu",
3 | "private": true,
4 | "type": "module",
5 | "workspaces": [
6 | "public-portal",
7 | "intranet",
8 | "backend"
9 | ],
10 | "scripts": {
11 | "prescripts": "npm run start:db -w @beer-geek-menu/backend",
12 | "scripts": "tsx ./run-scripts",
13 | "start": "npm run scripts -- start",
14 | "console-runners": "npm run scripts -- console-runners",
15 | "test:watch": "npm run scripts -- test:watch",
16 | "build": "turbo build",
17 | "test": "turbo test",
18 | "prepare": "husky || echo 'noop Huksy not installed'"
19 | },
20 | "lint-staged": {
21 | "**/*": "prettier --write --ignore-unknown ."
22 | },
23 | "devDependencies": {
24 | "@types/prompts": "^2.4.9",
25 | "husky": "^9.0.11",
26 | "nodemon": "^3.1.0",
27 | "prettier": "^3.2.5",
28 | "prompts": "^2.4.2",
29 | "rimraf": "^5.0.5",
30 | "tsx": "^4.7.3",
31 | "turbo": "^1.13.3",
32 | "typescript": "^5.4.5",
33 | "vite": "^5.2.10",
34 | "vite-plugin-externalize-deps": "^0.8.0",
35 | "vitest": "^1.5.2"
36 | },
37 | "dependencies": {
38 | "@fontsource-variable/oswald": "^5.0.20",
39 | "@fontsource/roboto": "^5.0.13"
40 | }
41 | }
42 |
--------------------------------------------------------------------------------
/run-scripts/project-commands.ts:
--------------------------------------------------------------------------------
1 | const commandType = process.argv[2];
2 |
3 | interface Project {
4 | name: string;
5 | filterCommand: string;
6 | }
7 |
8 | const projectMap: Record