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
11 changes: 0 additions & 11 deletions .changeset/gold-paws-grab.md

This file was deleted.

12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# create-reactify-app

## 0.3.1

### Patch Changes

- 44e4281: `db98520`: fix: flatten features into Handlebars template context

Feature flags were nested in `config.features` but Handlebars templates reference them as top-level variables (`{{#if cms}}`, `{{#if auth}}`). Merging `config.features` into the context fixes empty file generation when feature flags are used.

`0c171e7`: feat: register `not` helper for `(not x)` sub-expression in templates

Supports the `@if !x → {{#if (not x)}}` conversion for truthy flag negation, replacing `{{#unless x}}` which had a closing tag mismatch with `@endif → {{/if}}`.

## 0.3.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-reactify-app",
"version": "0.3.0",
"version": "0.3.1",
"description": "Scaffold Reactify projects — Fastify + React + Vite SSR",
"type": "module",
"bin": {
Expand Down
Loading