rafters 0.0.6 → 0.0.7

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 (3) hide show
  1. package/README.md +3 -2
  2. package/dist/index.js +3081 -2675
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -22,7 +22,8 @@ Initialize a project with design tokens. Detects your framework, scaffolds `.raf
22
22
 
23
23
  ```bash
24
24
  rafters init # Interactive setup
25
- rafters init --force # Regenerate output from existing config
25
+ rafters init --rebuild # Regenerate output files from existing tokens
26
+ rafters init --reset # Re-run generators fresh, replacing persisted tokens
26
27
  rafters init --agent # JSON output for CI/machine consumption
27
28
  ```
28
29
 
@@ -35,7 +36,7 @@ rafters init --agent # JSON output for CI/machine consumption
35
36
  | Tailwind CSS | `rafters.css` | Yes | CSS custom properties with `@theme` |
36
37
  | TypeScript | `rafters.ts` | Yes | Type-safe constants with JSDoc intelligence |
37
38
  | DTCG JSON | `rafters.json` | No | W3C Design Tokens standard format |
38
- | Compiled CSS | `rafters.compiled.css` | No | Pre-processed, no build step needed |
39
+ | Standalone CSS | `rafters.standalone.css` | No | Pre-built, no Tailwind required |
39
40
 
40
41
  Automatically detects and migrates existing shadcn/ui color values. Requires Tailwind v4.
41
42