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
13 changes: 2 additions & 11 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,11 @@
## 1.3.0 (2026-03-28)
## 1.4.0 (2026-05-27)

### Feat

- fixing low effor issues, improveing e2e tests

## 1.2.2 (2026-03-03)

### Fix

- fixing theme switcher for default light mode

## 1.2.1 (2026-01-16)
- adding outline functionality

### Fix

- updating packages
- lint/formatting, pre-commits revamp

## 1.1.2 (2025-10-24)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "checkquest",
"private": true,
"version": "1.3.0",
"version": "1.4.0",
"type": "module",
"packageManager": "[email protected]",
"engines": {
Expand Down
107 changes: 102 additions & 5 deletions public/templates/react.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"name": "React",
"description": "React developer checklist",
"createdAt": "2025-09-21T13:02:32.480Z",
"updatedAt": "2025-09-21T13:02:32.480Z",
"updatedAt": "2026-05-27T00:00:00.000Z",
"sections": [
{
"id": "general",
Expand All @@ -30,6 +30,36 @@
"text": "Keys in lists",
"score": 1,
"extra": false
},
{
"id": "syntheticEvents",
"text": "Synthetic Events",
"score": 1,
"extra": false
},
{
"id": "fragments",
"text": "Fragments",
"score": 1,
"extra": false
},
{
"id": "controlledVsUncontrolled",
"text": "Controlled vs Uncontrolled Components",
"score": 2,
"extra": false
},
{
"id": "lifecycle",
"text": "Component Lifecycle",
"score": 2,
"extra": false
},
{
"id": "reconciliation",
"text": "Reconciliation & Fiber Architecture",
"score": 3,
"extra": true
}
]
},
Expand Down Expand Up @@ -77,7 +107,25 @@
"score": 3,
"extra": true
},
{ "id": "useId", "text": "useId", "score": 1, "extra": true }
{ "id": "useId", "text": "useId", "score": 1, "extra": true },
{
"id": "customHooks",
"text": "Custom Hooks",
"score": 2,
"extra": false
},
{
"id": "useDeferredValue",
"text": "useDeferredValue",
"score": 3,
"extra": true
},
{
"id": "useImperativeHandle",
"text": "useImperativeHandle",
"score": 2,
"extra": true
}
]
},
{
Expand Down Expand Up @@ -123,6 +171,36 @@
"text": "Error Boundaries",
"score": 2,
"extra": false
},
{
"id": "routing",
"text": "Routing in React",
"score": 2,
"extra": false
},
{
"id": "reactCompiler",
"text": "React Compiler",
"score": 3,
"extra": true
},
{
"id": "forwardRef",
"text": "forwardRef",
"score": 2,
"extra": false
},
{
"id": "suspense",
"text": "Suspense & React.lazy",
"score": 2,
"extra": false
},
{
"id": "compoundComponents",
"text": "Compound Components",
"score": 3,
"extra": true
}
]
},
Expand Down Expand Up @@ -167,6 +245,12 @@
"text": "Sass/Less",
"score": 1,
"extra": true
},
{
"id": "cssReset",
"text": "CSS Reset",
"score": 1,
"extra": false
}
]
},
Expand Down Expand Up @@ -223,9 +307,9 @@
"extra": true
},
{
"id": "react",
"text": "Reset Styles",
"score": 1,
"id": "reactProfiler",
"text": "React Profiler",
"score": 2,
"extra": true
}
]
Expand Down Expand Up @@ -271,6 +355,12 @@
"score": 3,
"extra": true
},
{
"id": "reactDevTools",
"text": "React DevTools",
"score": 1,
"extra": true
},
{ "id": "ai", "text": "AI", "score": 2, "extra": true },
{
"id": "cicd",
Expand All @@ -297,6 +387,13 @@
"score": 2,
"extra": true
},
{ "id": "isr", "text": "ISR (Next.js)", "score": 1, "extra": true },
{
"id": "nextJsRouting",
"text": "Routing in Next.js (app, pages)",
"score": 2,
"extra": true
},
{
"id": "otherFrameworks",
"text": "Other frameworks (Astro, Tanstack, Gatsby)",
Expand Down
Loading
Loading