-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change(docs): use pnpm workspaces (#157)
- Loading branch information
1 parent
298c933
commit 3471acc
Showing
16 changed files
with
498 additions
and
59 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 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
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
2 changes: 1 addition & 1 deletion
2
docs/.vitepress/theme/components/sandbox/SandboxPreviewSidebar.vue
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
2 changes: 1 addition & 1 deletion
2
docs/.vitepress/theme/components/vitepress/VPDocAsideOutline.vue
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
2 changes: 1 addition & 1 deletion
2
docs/.vitepress/theme/components/vitepress/VPSwitchAppearance.vue
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
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,3 @@ | ||
@tailwind base; | ||
@tailwind components; | ||
@tailwind utilities; |
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,41 @@ | ||
{ | ||
"name": "vitepress-openapi-docs", | ||
"version": "0.0.0", | ||
"type": "module", | ||
"private": true, | ||
"scripts": { | ||
"dev": "vitepress dev", | ||
"build": "vitepress build", | ||
"serve": "vitepress serve" | ||
}, | ||
"dependencies": { | ||
"@vueuse/core": "^10.11.0", | ||
"class-variance-authority": "^0.7.0", | ||
"clsx": "^2.1.1", | ||
"lucide-vue-next": "^0.411.0", | ||
"radix-vue": "^1.9.1", | ||
"tailwind-merge": "^2.4.0", | ||
"tailwindcss-animate": "^1.0.7", | ||
"vitepress-openapi": "workspace:*" | ||
}, | ||
"devDependencies": { | ||
"@amoutonbrady/lz-string": "^0.1.0", | ||
"@antfu/eslint-config": "^2.27.1", | ||
"@iconify/vue": "^4.2.0", | ||
"@types/node": "^22.5.1", | ||
"@vitejs/plugin-vue": "^5.1.3", | ||
"autoprefixer": "^10.4.20", | ||
"eslint": "^9.9.1", | ||
"eslint-plugin-cypress": "^3.5.0", | ||
"eslint-plugin-format": "^0.1.2", | ||
"postcss": "^8.4.42", | ||
"tailwindcss": "^3.4.10", | ||
"vite": "^5.4.2", | ||
"vitepress": "^1.4.1", | ||
"vitest": "^2.0.5", | ||
"vue": "^3.4.38" | ||
}, | ||
"resolutions": { | ||
"@typescript-eslint/utils": "^8.2.0" | ||
} | ||
} |
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,15 @@ | ||
const animate = require('tailwindcss-animate') | ||
const base = require('../tailwind.config') | ||
|
||
/** @type {import('tailwindcss').Config} */ | ||
module.exports = { | ||
darkMode: ['class'], | ||
safelist: ['dark'], | ||
prefix: '', | ||
content: [ | ||
'./.vitepress/theme/**/*.{vue,js,ts,jsx,tsx}', | ||
'./sidebar/*.md', | ||
], | ||
theme: base.theme, | ||
plugins: [animate], | ||
} |
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.