bunki 0.19.5 → 0.21.0

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
@@ -1215,7 +1215,7 @@ bun run build # Build distribution
1215
1215
  bun test # Run test suite
1216
1216
  bun test:coverage # Test coverage report
1217
1217
  bun run typecheck # TypeScript validation
1218
- bun run format # Prettier formatting
1218
+ bun run format # Biome formatting
1219
1219
  ```
1220
1220
 
1221
1221
  ## Project Structure
@@ -1,4 +1,4 @@
1
- import { Command } from "commander";
1
+ import type { Command } from "commander";
2
2
  import { loadConfig } from "../../config";
3
3
  import { getDefaultCSSConfig, processCSS, watchCSS } from "../../utils/css-processor";
4
4
  interface CssDeps {
@@ -1,4 +1,4 @@
1
- import { Command } from "commander";
1
+ import type { Command } from "commander";
2
2
  import { loadConfig } from "../../config";
3
3
  import { SiteGenerator } from "../../site-generator";
4
4
  interface GenerateDeps {
@@ -1,4 +1,4 @@
1
- import { Command } from "commander";
1
+ import type { Command } from "commander";
2
2
  import { uploadImages } from "../../utils/image-uploader";
3
3
  interface ImagesPushDeps {
4
4
  uploadImages: typeof uploadImages;
@@ -1,4 +1,4 @@
1
- import { Command } from "commander";
1
+ import type { Command } from "commander";
2
2
  import { createDefaultConfig } from "../../config";
3
3
  import { ensureDir } from "../../utils/file-utils";
4
4
  type WriteFileFn = (filePath: string, data: string) => Promise<number>;
@@ -1,4 +1,4 @@
1
- import { Command } from "commander";
1
+ import type { Command } from "commander";
2
2
  type WriteFileFn = (filePath: string, data: string) => Promise<number>;
3
3
  interface NewDeps {
4
4
  writeFile: WriteFileFn;
@@ -1,4 +1,4 @@
1
- import { Command } from "commander";
1
+ import type { Command } from "commander";
2
2
  import { startServer } from "../../server";
3
3
  interface ServeDeps {
4
4
  startServer: typeof startServer;
@@ -1,4 +1,4 @@
1
- import { Command } from "commander";
1
+ import type { Command } from "commander";
2
2
  export declare function handleValidateMediaCommand(options: {
3
3
  contentDir?: string;
4
4
  fix?: boolean;
@@ -1,2 +1,2 @@
1
- import { Command } from "commander";
1
+ import type { Command } from "commander";
2
2
  export declare function registerValidateCommand(program: Command): void;