tw-react-components 0.0.192 → 0.0.200
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 +10 -7
- package/index.esm.js +23702 -1755
- package/package.json +1 -1
- package/src/components/Resizable/index.d.ts +4 -4
- package/src/components/Sheet/index.d.ts +1 -1
- package/src/components/types.d.ts +1 -1
package/README.md
CHANGED
|
@@ -22,6 +22,9 @@ Check out the [live demo](https://bacali95.github.io/tw-react-components) to see
|
|
|
22
22
|
## Installation
|
|
23
23
|
|
|
24
24
|
```bash
|
|
25
|
+
# Using bun
|
|
26
|
+
bun add tw-react-components
|
|
27
|
+
|
|
25
28
|
# Using npm
|
|
26
29
|
npm install tw-react-components
|
|
27
30
|
|
|
@@ -133,26 +136,26 @@ function MyComponent() {
|
|
|
133
136
|
|
|
134
137
|
## Development
|
|
135
138
|
|
|
136
|
-
This project uses [Nx](https://nx.dev) as a build system and [
|
|
139
|
+
This project uses [Nx](https://nx.dev) as a build system and [Bun](https://bun.sh/) as a package manager.
|
|
137
140
|
|
|
138
141
|
```bash
|
|
139
142
|
# Install dependencies
|
|
140
|
-
|
|
143
|
+
bun install
|
|
141
144
|
|
|
142
145
|
# Start the development server
|
|
143
|
-
|
|
146
|
+
bun run start
|
|
144
147
|
|
|
145
148
|
# Build the library
|
|
146
|
-
|
|
149
|
+
bun run build
|
|
147
150
|
|
|
148
151
|
# Run tests
|
|
149
|
-
|
|
152
|
+
bun run test
|
|
150
153
|
|
|
151
154
|
# Lint the code
|
|
152
|
-
|
|
155
|
+
bun run lint
|
|
153
156
|
|
|
154
157
|
# Format the code
|
|
155
|
-
|
|
158
|
+
bun run prettier:fix
|
|
156
159
|
```
|
|
157
160
|
|
|
158
161
|
## Contributing
|