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.
- package/README.md +112 -93
- package/dist/.github/copilot-instructions.md +24 -25
- package/dist/AGENTS.md +20 -20
- package/dist/index.js +1 -1
- package/dist/main.py +304 -267
- package/dist/public/js/pp-reactive-v2.min.js +1 -1
- package/dist/tests/README.md +1 -1
- package/package.json +2 -2
package/dist/tests/README.md
CHANGED
|
@@ -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(...)
|
|
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
|
|
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": "^
|
|
34
|
+
"chalk": "^6.0.0",
|
|
35
35
|
"prompts": "^2.4.2"
|
|
36
36
|
}
|
|
37
37
|
}
|