generated from stijnvanhulle/template
-
-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: faker gives wrong string format for date, causes zodios mock failed to parse type properly * chore: use of biome * chore: update * chore: cleanup * chore: prettier for mocks * clean
- Loading branch information
1 parent
8f98e1f
commit f13d686
Showing
719 changed files
with
7,966 additions
and
11,234 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
public-hoist-pattern[]=*eslint* | ||
public-hoist-pattern[]=*prettier* |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"$schema": "https://biomejs.dev/schemas/1.6.3/schema.json", | ||
"extends": ["@kubb/biome-config/biome"] | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -475,7 +475,12 @@ export default defineConfig({ | |
['meta', { property: 'twitter:description', content: description }], | ||
['link', { rel: 'icon', href: '/logo.png', type: 'image/png' }], | ||
['link', { rel: 'mask-icon', href: '/logo.png', color: '#ffffff' }], | ||
['script', { src: 'https://cdn.jsdelivr.net/npm/[email protected]/dist/confetti.browser.min.js' }], | ||
[ | ||
'script', | ||
{ | ||
src: 'https://cdn.jsdelivr.net/npm/[email protected]/dist/confetti.browser.min.js', | ||
}, | ||
], | ||
], | ||
transformHtml: (code, id, { pageData }) => { | ||
if (!/[\\/]404\.html$/.test(id)) { | ||
|
@@ -520,15 +525,21 @@ export default defineConfig({ | |
{ | ||
text: 'Plugins', | ||
activeMatch: 'plugins', | ||
items: [ | ||
...pluginsMenu, | ||
], | ||
items: [...pluginsMenu], | ||
}, | ||
{ | ||
text: 'Reference', | ||
link: '/reference/overview', | ||
activeMatch: 'reference', | ||
}, | ||
{ text: 'Reference', link: '/reference/overview', activeMatch: 'reference' }, | ||
{ | ||
text: 'Try Out', | ||
items: [ | ||
{ text: 'Examples', link: '/examples/typescript', activeMatch: 'examples' }, | ||
{ | ||
text: 'Examples', | ||
link: '/examples/typescript', | ||
activeMatch: 'examples', | ||
}, | ||
{ text: 'Playground', link: '/playground' }, | ||
], | ||
}, | ||
|
@@ -566,8 +577,7 @@ export default defineConfig({ | |
], | ||
}, | ||
{ | ||
text: | ||
`<iframe src="https://github.com/sponsors/stijnvanhulle/button" title="Sponsor stijnvanhulle" height="32" width="114" style="border: 0; border-radius: 6px;"></iframe> | ||
text: `<iframe src="https://github.com/sponsors/stijnvanhulle/button" title="Sponsor stijnvanhulle" height="32" width="114" style="border: 0; border-radius: 6px;"></iframe> | ||
`, | ||
link: '', | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.