bunki 0.19.3 → 0.19.4

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.
Files changed (2) hide show
  1. package/dist/types.d.ts +2 -0
  2. package/package.json +2 -3
package/dist/types.d.ts CHANGED
@@ -133,6 +133,8 @@ export interface SiteConfig {
133
133
  copyright?: string;
134
134
  /** Strict mode: fail build on parsing errors (default: false) */
135
135
  strictMode?: boolean;
136
+ /** Google Analytics measurement ID (e.g., "G-XXXXXXXXXX"). If set, gtag.js is injected on every page. */
137
+ googleAnalyticsId?: string;
136
138
  /**
137
139
  * Configuration for content assets stored alongside markdown in content/{year}/{assetsDir}/.
138
140
  * When set, `bunki images:push --content-assets` uses this config for uploads.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bunki",
3
- "version": "0.19.3",
3
+ "version": "0.19.4",
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",
@@ -14,7 +14,6 @@
14
14
  "test:watch": "bun test --watch",
15
15
  "format": "prettier --write .",
16
16
  "format:check": "prettier --check .",
17
- "prepare": "husky",
18
17
  "lint-staged": "lint-staged",
19
18
  "typecheck": "bun tsc --noEmit",
20
19
  "clean": "rm -rf dist coverage",
@@ -54,7 +53,7 @@
54
53
  "marked-alert": "^2.1.2",
55
54
  "marked-highlight": "^2.2.3",
56
55
  "nunjucks": "^3.2.4",
57
- "postcss": "^8.5.8",
56
+ "postcss": "^8.0.0",
58
57
  "postcss-cli": "^11.0.1",
59
58
  "sanitize-html": "2.17.2",
60
59
  "slugify": "^1.6.8"