Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed docs/.data/content/contents.sqlite
Binary file not shown.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
5 changes: 5 additions & 0 deletions docs/eslint.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import withNuxt from '.nuxt/eslint.config.mjs'

export default withNuxt(
// Your custom configs here
)
15 changes: 10 additions & 5 deletions docs/nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ export default defineNuxtConfig({
modules: [
'@nuxtjs/color-mode',
'@nuxt/content',
'@nuxtjs/google-fonts',
'@nuxt/fonts',
'@nuxt/eslint',
'nuxt-svgo',
],

Expand Down Expand Up @@ -38,10 +39,14 @@ export default defineNuxtConfig({
defaultImport: 'component',
},

googleFonts: {
families: {
'Public+Sans': [300, 400, 500, 600],
},
fonts: {
families: [
{
name: 'Public Sans',
provider: 'bunny',
weights: [300, 400, 500, 600],
},
],
},

vite: {
Expand Down
39 changes: 21 additions & 18 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,30 +4,33 @@
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview"
"preview": "nuxt preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"@nuxt/content": "^3.3.0",
"@nuxt/eslint-config": "^1.2.0",
"@nuxtjs/color-mode": "^3.5.2",
"@nuxtjs/google-fonts": "^3.2.0",
"@tailwindcss/typography": "^0.5.16",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.5.0",
"autoprefixer": "^10.4.21",
"@nuxt/content": "^3.8.2",
"@nuxt/eslint": "^1.10.0",
"@nuxt/fonts": "^0.12.1",
"@nuxtjs/color-mode": "^4.0.0",
"@tailwindcss/typography": "^0.5.19",
"autoprefixer": "^10.4.22",
"eslint": "^9.22.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-vue": "^10.0.0",
"nuxt": "3.16.0",
"nuxt-svgo": "^4.0.15",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11"
"eslint-plugin-prettier": "^5.5.4",
"nuxt": "^4.2.1",
"nuxt-svgo": "^4.2.6",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.7.1",
"typescript": "^5.9.3",
"vite": "^7.2.2",
"vue": "^3.5.24"
},
"dependencies": {
"@headlessui/vue": "^1.7.23",
"@heroicons/vue": "^2.2.0",
"@tailwindcss/vite": "^4.0.14",
"@vueuse/core": "^13.0.0",
"tailwindcss": "^4.0.14"
"@tailwindcss/vite": "^4.1.17",
"@vueuse/core": "^14.0.0",
"tailwindcss": "^4.1.17"
}
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
"license": "MIT",
"prepare": "npm run build",
"scripts": {
"dev:docs": "cd docs && yarn dev",
"build:docs": "cd docs && yarn generate",
"dev:docs": "cd docs && pnpm run dev",
"build:docs": "cd docs && pnpm run generate",
"semantic-release": "semantic-release",
"commit": "git-cz",
"dev": "vite",
Expand Down
7,570 changes: 4,762 additions & 2,808 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion pnpm-workspace.yaml
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
packages:
- 'docs'
- docs

onlyBuiltDependencies:
- better-sqlite3
- esbuild
Loading