@kubb/core 1.1.3 → 1.1.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.
package/dist/index.d.ts CHANGED
@@ -376,6 +376,7 @@ type CLIOptions = {
376
376
  * @default `'silent'`
377
377
  */
378
378
  logLevel?: LogLevel;
379
+ init?: unknown;
379
380
  };
380
381
  type BuildOutput = {
381
382
  files: FileManager['files'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kubb/core",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "description": "Generator core",
5
5
  "repository": {
6
6
  "type": "git",
@@ -43,7 +43,7 @@
43
43
  "change-case": "^4.1.2",
44
44
  "directory-tree": "^3.5.1",
45
45
  "rimraf": "^5.0.1",
46
- "@kubb/ts-codegen": "1.1.3"
46
+ "@kubb/ts-codegen": "1.1.4"
47
47
  },
48
48
  "devDependencies": {
49
49
  "tsup": "^6.7.0",
@@ -65,8 +65,7 @@
65
65
  "pre-commit": "echo 'pre-commit not configured'",
66
66
  "pre-push": "pnpm typecheck",
67
67
  "test": "vitest --passWithNoTests",
68
- "upgrade": "ncu -u",
69
- "upgrade:local": "ncu --interactive --doctor",
68
+ "upgrade": "pnpm update",
70
69
  "typecheck": "tsc -p ./tsconfig.json --noEmit --emitDeclarationOnly false"
71
70
  }
72
71
  }
package/src/types.ts CHANGED
@@ -109,6 +109,7 @@ export type CLIOptions = {
109
109
  * @default `'silent'`
110
110
  */
111
111
  logLevel?: LogLevel
112
+ init?: unknown
112
113
  }
113
114
 
114
115
  export type BuildOutput = {