tutuca 0.9.81 → 0.9.83
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 +3 -3
- package/dist/tutuca-cli.js +12805 -12787
- package/dist/tutuca-dev.ext.js +551 -629
- package/dist/tutuca-dev.js +481 -570
- package/dist/tutuca-dev.min.js +2 -2
- package/dist/tutuca-extra.ext.js +333 -432
- package/dist/tutuca-extra.js +266 -365
- package/dist/tutuca-extra.min.js +2 -2
- package/dist/tutuca.ext.js +274 -280
- package/dist/tutuca.js +253 -259
- package/dist/tutuca.min.js +2 -2
- package/package.json +4 -2
- package/skill/tutuca/SKILL.md +3 -2
- package/skill/tutuca/advanced.md +14 -4
- package/skill/tutuca/cli.md +1 -0
- package/skill/tutuca/component-design.md +151 -0
- package/skill/tutuca/core.md +6 -0
- package/skill/tutuca/patterns/README.md +1 -0
- package/skill/tutuca/patterns/file-input.md +39 -0
- package/skill/tutuca-source/tutuca.ext.js +274 -280
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ Zero-dependency batteries included SPA framework.
|
|
|
7
7
|
- **Fits in your head** (and the context window)
|
|
8
8
|
- **View source friendly** — step through the whole stack
|
|
9
9
|
- **As much HTML as possible, as little JS as needed**
|
|
10
|
-
- ~
|
|
10
|
+
- ~177KB minified, ~40KB brotli compressed
|
|
11
11
|
|
|
12
12
|
## Quick Start
|
|
13
13
|
|
|
@@ -87,8 +87,8 @@ tutuca help [command]
|
|
|
87
87
|
| Command | What it does |
|
|
88
88
|
|---|---|
|
|
89
89
|
| `get <module>` | Export inventory and counts for the module |
|
|
90
|
-
| `list <module
|
|
91
|
-
| `examples <module
|
|
90
|
+
| `list <module> [name] [--limit n]` | List components and their fields/views (`--limit n` caps, `0` = all) |
|
|
91
|
+
| `examples <module> [--limit n]` | List the examples defined in the module's section (`--limit n` caps, `0` = all) |
|
|
92
92
|
| `show <module> [name]` | Component API docs — all, or one by name |
|
|
93
93
|
| `lint <module> [name]` | Run lint checks — all, or one by name (exit 2 on errors) |
|
|
94
94
|
| `render <module> [name] [--title t] [--view v]` | Render examples to HTML |
|