fix(corporate-modernist): unbreak contact-form template register (Wave B blocker)

The mobile inline <style> emitted '@media (min-width:640px){#contact-form-...'
— the '{#' before the ID selector is the ninjatpl comment-open token, so
the lexer read the rest of the line as a single-line comment and failed
on the trailing newline ('Newline not permitted in a single-line comment').
Strict full re-register (theme hot-swap / InstallFromRegistry) 500s on it,
blocking every theme upgrade; the /contact page is also broken. Insert a
space ('){ #contact-form') — valid CSS, breaks the token. Only occurrence
across all templates. make build/verify don't lex templates, so it slipped.

bump to 0.4.2

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Alex Dunmow 2026-07-06 15:48:03 +08:00
parent df486e06bd
commit 517ca93b01
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
name = "corporate-modernist" name = "corporate-modernist"
display_name = "Corporate Modernist" display_name = "Corporate Modernist"
scope = "@themes" scope = "@themes"
version = "0.4.1" version = "0.4.2"
description = "Swiss-grid B2B theme with restrained typography, a single configurable accent, and trust-signal blocks for enterprise sites." description = "Swiss-grid B2B theme with restrained typography, a single configurable accent, and trust-signal blocks for enterprise sites."
kind = "theme" kind = "theme"
categories = ["templates"] categories = ["templates"]