-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add
config/vite
export and defineConfig helper
- Loading branch information
Showing
10 changed files
with
927 additions
and
1,544 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
Empty file.
Empty file.
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,8 @@ | ||
declare const baseConfig: import('vite').UserConfig | ||
|
||
declare function defineConfig(config?: import('vite').UserConfig): import('vite').UserConfig | ||
declare function defineConfig(config?: Promise<import('vite').UserConfig>): Promise<import('vite').UserConfig> | ||
declare function defineConfig(config?: import('vite').UserConfigFnObject): import('vite').UserConfigFnObject | ||
declare function defineConfig(config?: import('vite').UserConfigExport): import('vite').UserConfigExport | ||
|
||
export { baseConfig, defineConfig } |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "@globalbrain/sefirot", | ||
"type": "module", | ||
"version": "3.49.0", | ||
"packageManager": "pnpm@9.4.0", | ||
"packageManager": "pnpm@9.5.0", | ||
"description": "Vue Components for Global Brain Design System.", | ||
"author": "Kia Ishii <[email protected]>", | ||
"license": "MIT", | ||
|
@@ -20,8 +20,7 @@ | |
], | ||
"files": [ | ||
"lib", | ||
"config.js", | ||
"config.d.ts" | ||
"config" | ||
], | ||
"scripts": { | ||
"docs": "pnpm docs:dev", | ||
|
@@ -48,7 +47,7 @@ | |
"@types/body-scroll-lock": "^3.1.2", | ||
"@types/lodash-es": "^4.17.12", | ||
"@types/markdown-it": "^14.1.1", | ||
"@vue/reactivity": "^3.4.30", | ||
"@vue/reactivity": "^3.4.32", | ||
"@vuelidate/core": "^2.0.3", | ||
"@vuelidate/validators": "^2.0.4", | ||
"@vueuse/core": "^10.11.0", | ||
|
@@ -59,23 +58,23 @@ | |
"markdown-it": "^14.1.0", | ||
"normalize.css": "^8.0.1", | ||
"pinia": "^2.1.7", | ||
"postcss": "^8.4.38", | ||
"postcss": "^8.4.39", | ||
"postcss-nested": "^6.0.1", | ||
"unplugin-icons": "^0.19.0", | ||
"v-calendar": "^3.1.2", | ||
"vue": "^3.4.30", | ||
"vue": "^3.4.32", | ||
"vue-router": "^4.4.0" | ||
}, | ||
"dependencies": { | ||
"@sentry/browser": "^8.13.0", | ||
"@sentry/browser": "^8.18.0", | ||
"@tanstack/vue-virtual": "3.0.0-beta.62", | ||
"@tinyhttp/content-disposition": "^2.2.1", | ||
"@tinyhttp/cookie": "^2.1.1", | ||
"@types/file-saver": "^2.0.7", | ||
"@types/qs": "^6.9.15", | ||
"file-saver": "^2.0.5", | ||
"ofetch": "^1.3.4", | ||
"qs": "^6.12.1" | ||
"qs": "^6.12.3" | ||
}, | ||
"devDependencies": { | ||
"@globalbrain/eslint-config": "^1.6.0", | ||
|
@@ -86,10 +85,10 @@ | |
"@types/body-scroll-lock": "^3.1.2", | ||
"@types/lodash-es": "^4.17.12", | ||
"@types/markdown-it": "^14.1.1", | ||
"@types/node": "^20.14.9", | ||
"@types/node": "^20.14.11", | ||
"@vitejs/plugin-vue": "^5.0.5", | ||
"@vitest/coverage-v8": "^1.6.0", | ||
"@vue/reactivity": "^3.4.30", | ||
"@vitest/coverage-v8": "^2.0.3", | ||
"@vue/reactivity": "^3.4.32", | ||
"@vue/test-utils": "^2.4.6", | ||
"@vuelidate/core": "^2.0.3", | ||
"@vuelidate/validators": "^2.0.4", | ||
|
@@ -104,18 +103,18 @@ | |
"markdown-it": "^14.1.0", | ||
"normalize.css": "^8.0.1", | ||
"pinia": "^2.1.7", | ||
"postcss": "^8.4.38", | ||
"postcss": "^8.4.39", | ||
"postcss-nested": "^6.0.1", | ||
"punycode": "^2.3.1", | ||
"release-it": "^17.4.0", | ||
"typescript": "~5.5.2", | ||
"unplugin-icons": "^0.19.0", | ||
"release-it": "^17.6.0", | ||
"typescript": "~5.5.3", | ||
"unplugin-icons": "npm:@globalbrain/unplugin-icons@^0.19.1", | ||
"v-calendar": "^3.1.2", | ||
"vite": "^5.3.2", | ||
"vitepress": "^1.2.3", | ||
"vitest": "^1.6.0", | ||
"vue": "^3.4.30", | ||
"vite": "^5.3.4", | ||
"vitepress": "^1.3.1", | ||
"vitest": "^2.0.3", | ||
"vue": "^3.4.32", | ||
"vue-router": "^4.4.0", | ||
"vue-tsc": "^2.0.22" | ||
"vue-tsc": "^2.0.26" | ||
} | ||
} |
Oops, something went wrong.