Skip to content

Commit

Permalink
Merge pull request #1478 from bohdanhusak/chore/plugin-oas-no-output-…
Browse files Browse the repository at this point in the history
…examples

chore: update `plugin-oas` examples to use empty generators
  • Loading branch information
stijnvanhulle authored Dec 18, 2024
2 parents 5c80b2a + 2c37a6f commit 469d429
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion e2e/kubb.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const baseConfig = {
},
plugins: [
pluginOas({
output: false,
generators: [],
validate: false,
docs: false,
}),
Expand Down
2 changes: 1 addition & 1 deletion examples/msw/kubb.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default defineConfig(() => {
done: ['npm run typecheck', 'biome format --write ./', 'biome lint --apply-unsafe ./src'],
},
plugins: [
pluginOas({ output: false }),
pluginOas({ generators: [] }),
pluginTs({
output: {
path: 'models',
Expand Down
2 changes: 1 addition & 1 deletion examples/solid-query/kubb.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default defineConfig({
},
plugins: [
pluginOas({
output: false,
generators: [],
}),
pluginTs({
output: { path: 'models' },
Expand Down
2 changes: 1 addition & 1 deletion examples/svelte-query/kubb.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default defineConfig({
},
plugins: [
pluginOas({
output: false,
generators: [],
}),
pluginTs({
output: { path: 'models' },
Expand Down
2 changes: 1 addition & 1 deletion examples/swr/kubb.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default defineConfig({
done: ['npm run typecheck', 'biome format --write ./', 'biome lint --apply-unsafe ./src'],
},
plugins: [
pluginOas({ output: false }),
pluginOas({ generators: [] }),
pluginTs({
output: {
path: 'models',
Expand Down
2 changes: 1 addition & 1 deletion examples/zod/kubb.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default defineConfig(async () => {
// done: ['npm run typecheck', 'biome format --write ./', 'biome lint --apply-unsafe ./src'],
},
plugins: [
pluginOas({ output: false }),
pluginOas({ generators: [] }),
pluginTs({
output: {
path: './ts',
Expand Down

0 comments on commit 469d429

Please sign in to comment.