tw-react-components 0.0.197 → 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 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 [Yarn](https://yarnpkg.com/) as a package manager.
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
- yarn
143
+ bun install
141
144
 
142
145
  # Start the development server
143
- yarn start
146
+ bun run start
144
147
 
145
148
  # Build the library
146
- yarn build
149
+ bun run build
147
150
 
148
151
  # Run tests
149
- yarn test
152
+ bun run test
150
153
 
151
154
  # Lint the code
152
- yarn lint
155
+ bun run lint
153
156
 
154
157
  # Format the code
155
- yarn prettier:fix
158
+ bun run prettier:fix
156
159
  ```
157
160
 
158
161
  ## Contributing