@vtj/local 0.7.13 → 0.7.15

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.
package/dist/plugin.mjs CHANGED
@@ -114,6 +114,7 @@ const aliasPlugin = function(options) {
114
114
  ),
115
115
  "@vtj/base": join(packagesDir, "base/src"),
116
116
  "@vtj/utils": join(packagesDir, "utils/src/index.ts"),
117
+ "@vtj/icons/svg": join(packagesDir, "icons/dist/svg.ts"),
117
118
  "@vtj/icons": join(packagesDir, "icons/src"),
118
119
  "@vtj/ui": join(packagesDir, "ui/src"),
119
120
  "@vtj/core": join(packagesDir, "core/src"),
package/dist/service.mjs CHANGED
@@ -10,7 +10,7 @@ export async function notMatch(_req) {
10
10
  return fail("\u627E\u4E0D\u5230\u5904\u7406\u7A0B\u5E8F");
11
11
  }
12
12
  export async function saveLogs(e) {
13
- const name = `error-${timestamp()}.json`;
13
+ const name = `error-${timestamp()}`;
14
14
  const logs = new JsonRepository("logs");
15
15
  const json = JSON.parse(JSON.stringify(e));
16
16
  return logs.save(name, json);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vtj/local",
3
3
  "private": false,
4
- "version": "0.7.13",
4
+ "version": "0.7.15",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "build": "unbuild",
@@ -10,15 +10,15 @@
10
10
  "coverage": "vitest run --coverage"
11
11
  },
12
12
  "dependencies": {
13
- "@vtj/coder": "^0.7.13",
14
- "@vtj/core": "^0.7.13",
15
- "@vtj/node": "^0.7.5"
13
+ "@vtj/coder": "^0.7.15",
14
+ "@vtj/core": "^0.7.15",
15
+ "@vtj/node": "^0.7.6"
16
16
  },
17
17
  "devDependencies": {
18
- "@vtj/cli": "^0.7.10",
18
+ "@vtj/cli": "^0.7.11",
19
19
  "unbuild": "~2.0.0",
20
- "vite": "~5.0.12",
21
- "vitest": "~1.2.1"
20
+ "vite": "~5.1.1",
21
+ "vitest": "~1.3.0"
22
22
  },
23
23
  "exports": {
24
24
  ".": {
@@ -34,7 +34,7 @@
34
34
  "files": [
35
35
  "dist"
36
36
  ],
37
- "gitHead": "010201b133340a84d345745a0ea351c98098fa14",
37
+ "gitHead": "cbb81a983f9271342f987a2507923ef7c2e55369",
38
38
  "publishConfig": {
39
39
  "access": "public"
40
40
  }