@kubb/parser-ts 5.0.0-beta.41 → 5.0.0-beta.42

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/README.md +1 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -73,7 +73,7 @@ const source = parserTs.print(
73
73
 
74
74
  Parser instance for `.ts` and `.js` files. Pass to `defineConfig({ parsers: [...] })` to emit TypeScript source files.
75
75
 
76
- - `parserTs.parse(file, options?)` — serialise a `FileNode` to TypeScript source.
76
+ - `parserTs.parse(file, options?)` — serialize a `FileNode` to TypeScript source.
77
77
  - `parserTs.print(...nodes)` — convert TypeScript compiler `Node` instances to a formatted source string.
78
78
 
79
79
  ### `parserTsx`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kubb/parser-ts",
3
- "version": "5.0.0-beta.41",
3
+ "version": "5.0.0-beta.42",
4
4
  "description": "TypeScript and TSX source file parser for Kubb. Converts AST nodes and raw TypeScript code into formatted source strings using the TypeScript compiler API.",
5
5
  "keywords": [
6
6
  "codegen",
@@ -42,11 +42,11 @@
42
42
  },
43
43
  "dependencies": {
44
44
  "typescript": "^6.0.3",
45
- "@kubb/core": "5.0.0-beta.41"
45
+ "@kubb/core": "5.0.0-beta.42"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@internals/utils": "0.0.0",
49
- "@kubb/ast": "5.0.0-beta.41"
49
+ "@kubb/ast": "5.0.0-beta.42"
50
50
  },
51
51
  "engines": {
52
52
  "node": ">=22"