create-caspian-app 1.0.21 → 1.1.0

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.
@@ -105,7 +105,7 @@ reported `path:line:col`.
105
105
 
106
106
  Removing "unused" imports is the one fix that is dangerous in this app. Caspian
107
107
  single-file components import their children and then use them only as `<x-*>`
108
- tags inside `html(...)`/`render_html(...)` template strings (e.g. `from .Dialog
108
+ tags inside `html(...)` template strings (e.g. `from .Dialog
109
109
  import DialogContent` → `<x-dialog-content>`). Ruff can't parse the template, so
110
110
  it sees the import as unused — but casp resolves the tag from the module's
111
111
  globals at render time, so deleting it breaks the page.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-caspian-app",
3
- "version": "1.0.21",
3
+ "version": "1.1.0",
4
4
  "description": "Scaffold a new Caspian project (FastAPI-powered reactive Python framework).",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -31,7 +31,7 @@
31
31
  "author": "Jefferson Abraham Omier <thesteelninjacode@gmail.com>",
32
32
  "license": "MIT",
33
33
  "dependencies": {
34
- "chalk": "^5.6.2",
34
+ "chalk": "^6.0.0",
35
35
  "prompts": "^2.4.2"
36
36
  }
37
37
  }