@dlymon/stores
Advanced tools
+12
-0
| # @dlymon/stores | ||
| ## 6.0.0 | ||
| ### Major Changes | ||
| - 修改@dlymon-core/shared包因打包属性external导致的依赖包丢失 | ||
| ### Patch Changes | ||
| - Updated dependencies | ||
| - @dlymon-core/shared@4.0.0 | ||
| - @dlymon-core/preferences@6.0.0 | ||
| ## 5.0.0 | ||
@@ -4,0 +16,0 @@ |
+5
-5
| { | ||
| "name": "@dlymon/stores", | ||
| "version": "5.0.0", | ||
| "version": "6.0.0", | ||
| "license": "MIT", | ||
@@ -20,7 +20,7 @@ "type": "module", | ||
| "vue": "^3.5.17", | ||
| "vue-router": "^4.5.1", | ||
| "@dlymon-core/preferences": "5.0.0", | ||
| "@dlymon-core/shared": "3.0.0", | ||
| "@dlymon-core/typings": "3.0.0" | ||
| "vue-router": "^4.6.3", | ||
| "@dlymon-core/preferences": "6.0.0", | ||
| "@dlymon-core/typings": "3.0.0", | ||
| "@dlymon-core/shared": "4.0.0" | ||
| } | ||
| } |
+4
-1
@@ -6,3 +6,6 @@ import type { Pinia } from 'pinia'; | ||
| import { createPinia } from 'pinia'; | ||
| import SecureLS from 'secure-ls'; | ||
| // 修复secure-ls的导入方式,以兼容ESM环境 | ||
| import SecureLSModule from 'secure-ls'; | ||
| // secure-ls可能是CommonJS模块,需要确保正确访问其默认导出 | ||
| const SecureLS = (SecureLSModule as any)?.default || SecureLSModule; | ||
@@ -9,0 +12,0 @@ let pinia: Pinia; |
35746
1.2%1204
0.25%+ Added
+ Added
- Removed
- Removed
Updated
Updated