@colletdev/docs 0.2.1 → 0.2.2

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/cli.mjs +6 -5
  2. package/package.json +1 -1
package/cli.mjs CHANGED
@@ -64,13 +64,13 @@ function setupClaude(framework) {
64
64
  const skillMd = `---
65
65
  name: collet
66
66
  description: >
67
- Collet component library — 48 accessible Custom Element + WASM components
67
+ Collet component library — 49 accessible Custom Element + WASM components
68
68
  with typed ${framework ? framework.charAt(0).toUpperCase() + framework.slice(1) : 'framework'} wrappers.
69
69
  ---
70
70
 
71
71
  # Collet
72
72
 
73
- 48 accessible web components built in Rust/WASM. Distributed as Custom Elements
73
+ 49 accessible web components built in Rust/WASM. Distributed as Custom Elements
74
74
  with first-class React, Vue, Svelte, and Angular wrappers.
75
75
 
76
76
  ## Context Detection
@@ -138,7 +138,7 @@ function setupCodex(framework) {
138
138
 
139
139
  const content = `# Collet Component Library
140
140
 
141
- This project uses Collet — 48 accessible web components built in Rust/WASM.
141
+ This project uses Collet — 49 accessible web components built in Rust/WASM.
142
142
 
143
143
  ## Setup
144
144
 
@@ -189,7 +189,7 @@ function setupCursor(framework) {
189
189
 
190
190
  const content = `# Collet Component Library
191
191
 
192
- This project uses Collet — 48 accessible web components (Rust/WASM).
192
+ This project uses Collet — 49 accessible web components (Rust/WASM).
193
193
 
194
194
  ## Import Pattern
195
195
  ${framework === 'react' ? "```tsx\nimport { Button, TextInput, Dialog } from '@colletdev/react';\n```"
@@ -220,7 +220,7 @@ Framework guide: \`node_modules/@colletdev/docs/${framework || 'core'}.md\`
220
220
  function setupGeneric(framework) {
221
221
  const content = `# Collet Components
222
222
 
223
- This project uses [Collet](https://github.com/Danrozen87/collet) — 48 accessible
223
+ This project uses [Collet](https://github.com/Danrozen87/collet) — 49 accessible
224
224
  web components built in Rust/WASM with ${framework ? framework.charAt(0).toUpperCase() + framework.slice(1) : 'framework'} wrappers.
225
225
 
226
226
  ## API Reference
@@ -298,3 +298,4 @@ function main() {
298
298
  }
299
299
 
300
300
  main();
301
+ process.exit(0);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colletdev/docs",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Collet component library documentation — API reference, framework guides, and AI agent setup",
5
5
  "type": "module",
6
6
  "bin": {