create-powers 0.1.3 → 0.1.4

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.
package/README.md CHANGED
@@ -14,7 +14,9 @@ pnpm install
14
14
  pnpm dev # → http://localhost:5190
15
15
  ```
16
16
 
17
- Installs `@lab206/core`, `@lab206/dom`, and `@lab206/ui` (^0.1.2).
17
+ Installs `@lab206/core`, `@lab206/dom`, and `@lab206/ui` (**^0.1.4**).
18
+ Vite is preconfigured with `jsxImportSource: "@lab206/dom"` (no React).
18
19
 
19
20
  - Docs: https://lab206.com/docs
21
+ - Troubleshooting: https://github.com/spowers2/powers/blob/main/docs/NPM.md
20
22
  - License: BUSL-1.1 (source-available)
@@ -60,7 +60,7 @@ function main() {
60
60
  if (fs.existsSync(pkgPath)) {
61
61
  const pkg = JSON.parse(fs.readFileSync(pkgPath, "utf8"));
62
62
  pkg.name = base.replace(/[^a-zA-Z0-9._-]+/g, "-").replace(/^-+|-+$/g, "") || "powers-app";
63
- const ver = "^0.1.3";
63
+ const ver = "^0.1.4";
64
64
  pkg.dependencies = {
65
65
  ...(pkg.dependencies || {}),
66
66
  "@lab206/core": ver,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-powers",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Scaffold a Powers + Vite app (pnpm create powers my-app)",
5
5
  "type": "module",
6
6
  "license": "BUSL-1.1",
@@ -10,9 +10,9 @@
10
10
  "deploy:zip": "vite build && rm -f site-upload.zip && (cd dist && zip -r ../site-upload.zip .) && node -e \"console.log('\\n✓ Ready to upload: site-upload.zip\\n\\nNext:\\n 1. Host File Manager → web root (often public_html)\\n 2. Upload site-upload.zip → Extract\\n 3. Visit your domain\\n\\nGuide: https://github.com/spowers2/powers/blob/main/docs/DEPLOY.md\\n')\""
11
11
  },
12
12
  "dependencies": {
13
- "@lab206/core": "^0.1.3",
14
- "@lab206/dom": "^0.1.3",
15
- "@lab206/ui": "^0.1.3"
13
+ "@lab206/core": "^0.1.4",
14
+ "@lab206/dom": "^0.1.4",
15
+ "@lab206/ui": "^0.1.4"
16
16
  },
17
17
  "devDependencies": {
18
18
  "typescript": "^5.8.2",