bunki 0.3.4 → 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 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.20 (recommended runtime).
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.20 or later as its runtime. It also works with Node.js v18+ but Bun is recommended for optimal performance.
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.20 or later)
263
+ # Verify Bun version (should be 1.2.21 or later)
264
264
  bun --version
265
265
  ```
266
266
 
package/dist/cli.js CHANGED
@@ -8377,7 +8377,7 @@ var require_is_glob = __commonJS((exports, module) => {
8377
8377
  };
8378
8378
  });
8379
8379
 
8380
- // node_modules/glob-parent/index.js
8380
+ // node_modules/chokidar/node_modules/glob-parent/index.js
8381
8381
  var require_glob_parent = __commonJS((exports, module) => {
8382
8382
  var isGlob = require_is_glob();
8383
8383
  var pathPosixDirname = __require("path").posix.dirname;
package/dist/index.js CHANGED
@@ -21648,7 +21648,7 @@ var require_is_glob = __commonJS((exports, module) => {
21648
21648
  };
21649
21649
  });
21650
21650
 
21651
- // node_modules/glob-parent/index.js
21651
+ // node_modules/chokidar/node_modules/glob-parent/index.js
21652
21652
  var require_glob_parent = __commonJS((exports, module) => {
21653
21653
  var isGlob = require_is_glob();
21654
21654
  var pathPosixDirname = __require("path").posix.dirname;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bunki",
3
- "version": "0.3.4",
3
+ "version": "0.3.5",
4
4
  "description": "An opinionated static site generator built with Bun featuring PostCSS integration and modern web development workflows",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -59,12 +59,15 @@
59
59
  "slugify": "^1.6.6"
60
60
  },
61
61
  "devDependencies": {
62
+ "@tailwindcss/postcss": "^4.1.12",
62
63
  "@types/nunjucks": "^3.2.6",
63
64
  "@types/sanitize-html": "^2.16.0",
64
- "bun-types": "1.2.20",
65
+ "autoprefixer": "^10.4.20",
66
+ "bun-types": "1.2.21",
65
67
  "husky": "^9.1.7",
66
68
  "lint-staged": "16.1.5",
67
69
  "prettier": "^3.6.2",
70
+ "tailwindcss": "^4.1.12",
68
71
  "typescript": "^5.9.2"
69
72
  },
70
73
  "peerDependencies": {
@@ -81,7 +84,7 @@
81
84
  "README.md"
82
85
  ],
83
86
  "engines": {
84
- "bun": ">=1.2.20",
87
+ "bun": ">=1.2.21",
85
88
  "node": ">=18.0.0"
86
89
  },
87
90
  "engineStrict": true,