perf: supplement login interface documents and add configuration parameters (#4175)

This commit is contained in:
Vben
2024-08-17 22:38:37 +08:00
committed by GitHub
parent 3c17f4e9f8
commit 5f41c51770
15 changed files with 234 additions and 71 deletions

View File

@@ -5,6 +5,7 @@ export default defineBuildConfig({
declaration: true,
entries: [
'src/index',
'src/store',
'src/constants/index',
'src/utils/index',
'src/color/index',

View File

@@ -44,6 +44,11 @@
"types": "./src/cache/index.ts",
"development": "./src/cache/index.ts",
"default": "./dist/cache/index.mjs"
},
"./store": {
"types": "./src/store.ts",
"development": "./src/store.ts",
"default": "./dist/store.mjs"
}
},
"publishConfig": {
@@ -56,6 +61,7 @@
},
"dependencies": {
"@ctrl/tinycolor": "^4.1.0",
"@tanstack/vue-store": "^0.5.5",
"@vue/shared": "^3.4.37",
"clsx": "^2.1.1",
"defu": "^6.1.4",

View File

@@ -1,4 +1,5 @@
export * from './cache';
export * from './color';
export * from './constants';
export * from './store';
export * from './utils';

View File

@@ -0,0 +1 @@
export * from '@tanstack/vue-store';