Skip to content
Merged
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
4 changes: 3 additions & 1 deletion .cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@
"Turborepo",
"stefanzweifel",
"venv",
"scaffold"
"scaffold",
"scaffolder",
"scaffolders"
],
"version": "0.2"
}
17 changes: 0 additions & 17 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,32 +1,15 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.245.0/containers/typescript-node
{
"name": "Node.js & TypeScript",
"build": {
"dockerfile": "Dockerfile",
// Update 'VARIANT' to pick a Node version: 18, 16, 14.
// Append -bullseye or -buster to pin to an OS version.
// Use -bullseye variants on local on arm64/Apple Silicon.
"args": {
"VARIANT": "18"
}
},

// Configure tool-specific properties.
"customizations": {
// Configure properties specific to VS Code.
"vscode": {
// Add the IDs of extensions you want installed when the container is created.
"extensions": ["dbaeumer.vscode-eslint"]
}
},

// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],

// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "yarn install",

// Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
"remoteUser": "node"
}
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ insert_final_newline = true
trim_trailing_whitespace = true

[*.md]
insert_final_newline = false
insert_final_newline = true
trim_trailing_whitespace = false
12 changes: 7 additions & 5 deletions .github/workflows/mega-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,13 @@ jobs:
LLM_ADVISOR_ENABLED: >-
${{
github.event_name != 'pull_request' ||
(github.event.pull_request.user.login != 'dependabot[bot]' &&
github.event.pull_request.user.login != 'renovate[bot]' &&
github.event.pull_request.user.login != 'github-actions[bot]' &&
!startsWith(github.event.pull_request.user.login, 'dependabot') &&
!startsWith(github.event.pull_request.user.login, 'renovate'))
(
github.event.pull_request.user.login != 'dependabot[bot]' &&
github.event.pull_request.user.login != 'renovate[bot]' &&
github.event.pull_request.user.login != 'github-actions[bot]' &&
!startsWith(github.event.pull_request.user.login, 'dependabot') &&
!startsWith(github.event.pull_request.user.login, 'renovate')
)
}}

GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
7 changes: 7 additions & 0 deletions .mega-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@ APPLY_FIXES: all
# default
# ENABLE_LINTERS:

DISABLE_LINTERS:
- COPYPASTE_JSCPD
- REPOSITORY_CHECKOV
- REPOSITORY_GRYPE
- REPOSITORY_TRIVY
- SPELL_LYCHEE

# DISABLE:
# - COPYPASTE # Uncomment to disable checks of excessive copy-pastes
# - SPELL # Uncomment to disable checks of spelling mistakes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"storybook": "turbo run storybook",
"test": "turbo run test",
"test:all": "tsx --test \"packages/**/tests/**/*.test.mts\"",
"test:coverage": "COVERAGE=1 c8 --extension .ts --include 'packages/**/src/**/*.ts' --exclude 'packages/**/dist/**' --reporter=text --reporter=lcov --branches 59 --functions 60 --lines 60 --statements 60 tsx --test \"packages/**/tests/**/*.test.mts\"",
"test:coverage": "npm run build && COVERAGE=1 c8 --extension .ts --include 'packages/**/src/**/*.ts' --exclude 'packages/**/dist/**' --reporter=text --reporter=lcov --branches 59 --functions 60 --lines 60 --statements 60 tsx --test \"packages/**/tests/**/*.test.mts\"",
"type-check": "turbo run type-check"
},
"devDependencies": {
Expand Down
10 changes: 5 additions & 5 deletions packages/create-awesome-node-app/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,14 +101,14 @@

## 🧱 Template Ecosystem

| Category | Example Templates |
| ---------------- | ----------------------------------------------------------------- |
| Category | Example Templates |
| --------------- | ----------------------------------------------------------------- |
| 🖥 Frontend | `react-vite-boilerplate` — React 18 + Vite + TS + ESLint + Vitest |
| 🔧 Backend | `nestjs-boilerplate` — NestJS + TS + ESLint + Jest |

Check failure on line 107 in packages/create-awesome-node-app/README.md

View workflow job for this annotation

GitHub Actions / Markdown Lint

MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]

Check failure on line 107 in packages/create-awesome-node-app/README.md

View workflow job for this annotation

GitHub Actions / Markdown Lint

MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]
| 🌐 Full Stack | `nextjs-starter` — Next.js + SSR + TS + Prettier |

Check failure on line 108 in packages/create-awesome-node-app/README.md

View workflow job for this annotation

GitHub Actions / Markdown Lint

MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]

Check failure on line 108 in packages/create-awesome-node-app/README.md

View workflow job for this annotation

GitHub Actions / Markdown Lint

MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]
| 🗂 Monorepo | `turborepo-boilerplate` — Turborepo + Changesets + TS |
| 🧩 Web Extension | `web-extension-react-boilerplate` — Cross-browser + React |

Check failure on line 110 in packages/create-awesome-node-app/README.md

View workflow job for this annotation

GitHub Actions / Markdown Lint

MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]

Check failure on line 110 in packages/create-awesome-node-app/README.md

View workflow job for this annotation

GitHub Actions / Markdown Lint

MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]
| 🧪 UAT / Testing | `webdriverio-boilerplate` — E2E automation scaffold |

Check failure on line 111 in packages/create-awesome-node-app/README.md

View workflow job for this annotation

GitHub Actions / Markdown Lint

MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]

Check failure on line 111 in packages/create-awesome-node-app/README.md

View workflow job for this annotation

GitHub Actions / Markdown Lint

MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]

→ Full catalog at **[create-awesome-node-app.vercel.app/templates](https://create-awesome-node-app.vercel.app/templates)**

Expand All @@ -118,9 +118,9 @@

Think of addons as _lego bricks_ — snap them onto any template to add exactly what you need:

| Category | Examples |
| --------------- | -------------------------------------------------------- |
| Category | Examples |
| -------------- | -------------------------------------------------------- |
| 🎨 UI Libraries | Material UI, Tailwind CSS, component libraries |

Check failure on line 123 in packages/create-awesome-node-app/README.md

View workflow job for this annotation

GitHub Actions / Markdown Lint

MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]

Check failure on line 123 in packages/create-awesome-node-app/README.md

View workflow job for this annotation

GitHub Actions / Markdown Lint

MD060/table-column-style Table column style [Table pipe does not align with header for style "aligned"]
| 📊 State & Data | Jotai, tRPC, React Query, Zustand |
| 🔧 Tooling | GitHub Actions workflows, changesets, release automation |
| ✅ Code Quality | ESLint configs, Prettier, TypeScript strictness |
Expand Down Expand Up @@ -184,7 +184,7 @@

## 🔍 CLI Reference

```
```text
Usage: create-awesome-node-app [project-directory] [options]
```

Expand Down
1 change: 1 addition & 0 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"outputs": ["dist/**"]
},
"test": {
"dependsOn": ["^build"],
"cache": false
}
}
Expand Down
Loading