@duxweb/dvha-core 0.0.7 → 0.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
- import type { IManageHook } from 'src/hooks';
2
- import type { IUserState } from 'src/stores';
1
+ import type { IManageHook } from '../hooks';
2
+ import type { IUserState } from '../stores';
3
3
  /**
4
4
  * 数据提供者
5
5
  * 为全局或管理端提供自定义数据源处理服务
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@duxweb/dvha-core",
3
3
  "type": "module",
4
- "version": "0.0.7",
4
+ "version": "0.0.8",
5
5
  "author": "DuxWeb",
6
6
  "license": "LGPL-3.0",
7
7
  "repository": {
@@ -29,7 +29,7 @@
29
29
  ],
30
30
  "scripts": {
31
31
  "clean": "rimraf dist",
32
- "build": "bun run clean && vue-tsc --noEmit && vite build && bun run build:types",
32
+ "build": "bun run clean && vite build && bun run build:types",
33
33
  "build:types": "vue-tsc --declaration --emitDeclarationOnly --outDir dist/types",
34
34
  "prepublishOnly": "bun run build",
35
35
  "lint": "eslint .",
@@ -49,5 +49,8 @@
49
49
  "vue": "^3.5.0",
50
50
  "vue-router": "^4.0.0"
51
51
  },
52
- "devDependencies": {}
52
+ "devDependencies": {
53
+ "rimraf": "^6.0.1",
54
+ "vue-tsc": "^2.2.10"
55
+ }
53
56
  }