@rootui/button 0.0.4 → 0.0.5
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 +1 -12
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -43,18 +43,7 @@ pnpm add @rootui/button
|
|
|
43
43
|
bun add @rootui/button
|
|
44
44
|
```
|
|
45
45
|
|
|
46
|
-
#### Option 2:
|
|
47
|
-
```bash
|
|
48
|
-
npx shadcn@latest add @rootui/button
|
|
49
|
-
# or
|
|
50
|
-
yarn shadcn@latest add @rootui/button
|
|
51
|
-
# or
|
|
52
|
-
pnpm dlx shadcn@latest add @rootui/button
|
|
53
|
-
# or
|
|
54
|
-
bunx --bun shadcn@latest add @rootui/button
|
|
55
|
-
```
|
|
56
|
-
|
|
57
|
-
#### Option 3: 🏗️ Manual
|
|
46
|
+
#### Option 2: 🏗️ Manual
|
|
58
47
|
Check the [Root UI button docs](https://root-ui.com/docs/primitives/button#installation).
|
|
59
48
|
|
|
60
49
|
## 💻 Usage
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@rootui/button",
|
|
3
3
|
"description": "Buttons allow users to perform actions with mouse, touch, and keyboard interactions.",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"version": "0.0.
|
|
5
|
+
"version": "0.0.5",
|
|
6
6
|
"homepage": "https://root-ui.com/docs/primitives/button",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"sideEffects": false,
|
|
@@ -30,7 +30,9 @@
|
|
|
30
30
|
},
|
|
31
31
|
"scripts": {
|
|
32
32
|
"build": "tsup src",
|
|
33
|
-
"dev": "tsup src --watch src"
|
|
33
|
+
"dev": "tsup src --watch src",
|
|
34
|
+
"link": "bun link",
|
|
35
|
+
"publish": "bun publish"
|
|
34
36
|
},
|
|
35
37
|
"dependencies": {
|
|
36
38
|
"tailwind-variants": "^3.2.2"
|