🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@dlymon/stores

Package Overview
Dependencies
Maintainers
2
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dlymon/stores - npm Package Compare versions

Comparing version
5.0.0
to
6.0.0
+12
-0
CHANGELOG.md
# @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"
}
}

@@ -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;