bunki 0.3.3 → 0.3.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 +3 -3
- package/dist/cli.js +14461 -14421
- package/dist/index.d.ts +5 -5
- package/dist/index.js +18920 -18881
- package/package.json +6 -3
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ bun install -g bunki # or global
|
|
|
12
12
|
npm i bunki # Node (>=18)
|
|
13
13
|
```
|
|
14
14
|
|
|
15
|
-
Requires Bun >= 1.2.
|
|
15
|
+
Requires Bun >= 1.2.21 (recommended runtime).
|
|
16
16
|
|
|
17
17
|
## Quick Start
|
|
18
18
|
|
|
@@ -252,7 +252,7 @@ Bunki will process your CSS through PostCSS and Tailwind, generating optimized o
|
|
|
252
252
|
|
|
253
253
|
## 📦 Installation
|
|
254
254
|
|
|
255
|
-
> **IMPORTANT**: Bunki requires Bun v1.2.
|
|
255
|
+
> **IMPORTANT**: Bunki requires Bun v1.2.21 or later as its runtime. It also works with Node.js v18+ but Bun is recommended for optimal performance.
|
|
256
256
|
|
|
257
257
|
### Prerequisites
|
|
258
258
|
|
|
@@ -260,7 +260,7 @@ Bunki will process your CSS through PostCSS and Tailwind, generating optimized o
|
|
|
260
260
|
# Install Bun if you don't have it
|
|
261
261
|
curl -fsSL https://bun.sh/install | bash
|
|
262
262
|
|
|
263
|
-
# Verify Bun version (should be 1.2.
|
|
263
|
+
# Verify Bun version (should be 1.2.21 or later)
|
|
264
264
|
bun --version
|
|
265
265
|
```
|
|
266
266
|
|