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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ package-lock.json
apps/site/.next
apps/site/build
apps/site/public/blog-data.json
apps/site/next-env.d.ts

# Test Runner
junit.xml
Expand Down
7 changes: 0 additions & 7 deletions apps/site/next-env.d.ts

This file was deleted.

2 changes: 1 addition & 1 deletion apps/site/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"lint:js:fix": "node --run lint:js -- --fix",
"lint:md": "eslint \"**/*.md?(x)\" --cache --cache-strategy=content --cache-location=.eslintmdcache",
"lint:md:fix": "node --run lint:md -- --fix",
"lint:types": "tsc --noEmit",
"lint:types": "next typegen && tsc --noEmit",
"playwright": "playwright test",
"scripts:release-post": "cross-env NODE_NO_WARNINGS=1 node scripts/release-post/index.mjs",
"serve": "node --run dev",
Expand Down
Loading