@kubb/parser-md 5.0.0-beta.34 → 5.0.0-beta.35

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/index.d.ts +1 -1
  2. package/package.json +3 -2
package/dist/index.d.ts CHANGED
@@ -43,7 +43,7 @@ declare const parserMd: {
43
43
  name: string;
44
44
  extNames: (".md" | ".markdown")[];
45
45
  print(...parts: Array<PrintInput>): string;
46
- parse(file: ast.FileNode<any>): string;
46
+ parse(file: ast.FileNode<object>): string;
47
47
  };
48
48
  //#endregion
49
49
  export { type MdMeta, parserMd };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kubb/parser-md",
3
- "version": "5.0.0-beta.34",
3
+ "version": "5.0.0-beta.35",
4
4
  "description": "Markdown source file parser for Kubb. Converts the universal AST to `.md` source and renders YAML frontmatter via the `print` helper.",
5
5
  "keywords": [
6
6
  "codegen",
@@ -43,7 +43,7 @@
43
43
  },
44
44
  "dependencies": {
45
45
  "yaml": "^2.9.0",
46
- "@kubb/core": "5.0.0-beta.34"
46
+ "@kubb/core": "5.0.0-beta.35"
47
47
  },
48
48
  "devDependencies": {
49
49
  "@internals/utils": "0.0.0"
@@ -58,6 +58,7 @@
58
58
  "lint:fix": "oxlint --fix .",
59
59
  "release": "pnpm publish --no-git-check",
60
60
  "release:canary": "bash ../../.github/canary.sh && node ../../scripts/build.js canary && pnpm publish --no-git-check",
61
+ "release:stage": "pnpm stage publish --no-git-check",
61
62
  "start": "tsdown --watch",
62
63
  "test": "vitest --passWithNoTests",
63
64
  "typecheck": "tsc -p ./tsconfig.json --noEmit --emitDeclarationOnly false"