Skip to content

Commit 355811b

Browse files
committed
chore: use clapp
1 parent 7d09552 commit 355811b

4 files changed

Lines changed: 24 additions & 6 deletions

File tree

bun.lock

Lines changed: 21 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/headwind/bin/bin-name

-56.8 MB
Binary file not shown.

packages/headwind/bin/cli.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ import type { HeadwindConfig } from '../src/types'
33
import { existsSync, watch } from 'node:fs'
44
import { unlink } from 'node:fs/promises'
55
import process from 'node:process'
6-
import { CAC } from 'cac'
6+
import { CLI } from '@stacksjs/clapp'
77
import { version } from '../package.json'
88
import { build, buildAndWrite } from '../src/build'
99
import { config } from '../src/config'
1010
import { tailwindPreflight } from '../src/preflight'
1111

12-
const cli = new CAC('headwind')
12+
const cli = new CLI('headwind')
1313

1414
interface GlobalOptions {
1515
verbose?: boolean

packages/headwind/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@
6868
"test": "bun test"
6969
},
7070
"dependencies": {
71+
"@stacksjs/clapp": "^0.2.0",
7172
"bunfig": "^0.15.0"
7273
},
7374
"overrides": {

0 commit comments

Comments
 (0)