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 +1 -1
- package/dist/cli/commands/css.d.ts +1 -1
- package/dist/cli/commands/generate.d.ts +1 -1
- package/dist/cli/commands/images-push.d.ts +1 -1
- package/dist/cli/commands/init.d.ts +1 -1
- package/dist/cli/commands/new-post.d.ts +1 -1
- package/dist/cli/commands/serve.d.ts +1 -1
- package/dist/cli/commands/validate-media.d.ts +1 -1
- package/dist/cli/commands/validate.d.ts +1 -1
- package/dist/cli.js +31025 -30339
- package/dist/config.d.ts +1 -1
- package/dist/generators/feeds.d.ts +1 -1
- package/dist/index.d.ts +6 -6
- package/dist/parser.d.ts +7 -5
- package/dist/types.d.ts +57 -2
- package/dist/utils/change-detector.d.ts +2 -2
- package/dist/utils/css-processor.d.ts +1 -1
- package/dist/utils/image-uploader.d.ts +1 -1
- package/dist/utils/json-ld.d.ts +3 -4
- package/dist/utils/markdown/validators.d.ts +4 -3
- package/dist/utils/markdown-utils.d.ts +2 -2
- package/dist/utils/pagination.d.ts +3 -13
- package/dist/utils/s3-uploader.d.ts +1 -1
- package/dist/utils/schema-factory.d.ts +1 -1
- package/package.json +17 -20
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 #
|
|
1218
|
+
bun run format # Biome formatting
|
|
1219
1219
|
```
|
|
1220
1220
|
|
|
1221
1221
|
## Project Structure
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Command } from "commander";
|
|
1
|
+
import type { Command } from "commander";
|
|
2
2
|
export declare function registerValidateCommand(program: Command): void;
|