uniweb 0.2.1 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uniweb",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Create structured Vite + React sites with content/code separation",
5
5
  "type": "module",
6
6
  "bin": {
package/src/index.js CHANGED
@@ -347,6 +347,7 @@ Each markdown file specifies which component to use:
347
347
  \`\`\`markdown
348
348
  ---
349
349
  component: Hero
350
+ theme: dark
350
351
  ---
351
352
 
352
353
  # Your Title
@@ -719,6 +720,7 @@ order: 1
719
720
  // pages/home/1-hero.md
720
721
  writeFile(join(projectDir, 'pages/home/1-hero.md'), `---
721
722
  component: Hero
723
+ theme: dark
722
724
  ---
723
725
 
724
726
  # Welcome to ${projectName}