uniweb 0.2.0 → 0.2.1

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 +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uniweb",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Create structured Vite + React sites with content/code separation",
5
5
  "type": "module",
6
6
  "bin": {
package/src/index.js CHANGED
@@ -87,7 +87,7 @@ async function main() {
87
87
 
88
88
  // Parse arguments
89
89
  let projectName = args[1]
90
- let templateType = null
90
+ let templateType = "single"; // or null for iteractive selection
91
91
 
92
92
  // Check for --template flag
93
93
  const templateIndex = args.indexOf('--template')