Skip to content

Commit 16b24c7

Browse files
fix: unblock main CI checks
Co-authored-by: ulises-jeremias <17727170+ulises-jeremias@users.noreply.github.com>
1 parent 85ea19c commit 16b24c7

3 files changed

Lines changed: 7 additions & 6 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"storybook": "turbo run storybook",
1818
"test": "turbo run test",
1919
"test:all": "tsx --test \"packages/**/tests/**/*.test.mts\"",
20-
"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\"",
20+
"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\"",
2121
"type-check": "turbo run type-check"
2222
},
2323
"devDependencies": {

packages/create-awesome-node-app/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ create-awesome-node-app --template react-vite-boilerplate --list-addons
101101
102102
## 🧱 Template Ecosystem
103103
104-
| Category | Example Templates |
105-
| ---------------- | ----------------------------------------------------------------- |
104+
| Category | Example Templates |
105+
| --------------- | ----------------------------------------------------------------- |
106106
| 🖥 Frontend | `react-vite-boilerplate` — React 18 + Vite + TS + ESLint + Vitest |
107107
| 🔧 Backend | `nestjs-boilerplate` — NestJS + TS + ESLint + Jest |
108108
| 🌐 Full Stack | `nextjs-starter` — Next.js + SSR + TS + Prettier |
@@ -118,8 +118,8 @@ create-awesome-node-app --template react-vite-boilerplate --list-addons
118118
119119
Think of addons as _lego bricks_ — snap them onto any template to add exactly what you need:
120120
121-
| Category | Examples |
122-
| --------------- | -------------------------------------------------------- |
121+
| Category | Examples |
122+
| -------------- | -------------------------------------------------------- |
123123
| 🎨 UI Libraries | Material UI, Tailwind CSS, component libraries |
124124
| 📊 State & Data | Jotai, tRPC, React Query, Zustand |
125125
| 🔧 Tooling | GitHub Actions workflows, changesets, release automation |
@@ -184,7 +184,7 @@ npm create awesome-node-app@latest my-app
184184

185185
## 🔍 CLI Reference
186186

187-
```
187+
```text
188188
Usage: create-awesome-node-app [project-directory] [options]
189189
```
190190

turbo.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
"outputs": ["dist/**"]
3232
},
3333
"test": {
34+
"dependsOn": ["^build"],
3435
"cache": false
3536
}
3637
}

0 commit comments

Comments
 (0)