@ubean/modules 0.1.7 → 0.1.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.
package/dist/index.d.ts CHANGED
@@ -91,7 +91,7 @@ declare function topologicalSort<T extends {
91
91
  //#endregion
92
92
  //#region src/builtins.d.ts
93
93
  interface BuiltinModuleDefinition {
94
- key: 'icon' | 'pwa' | 'auth' | 'image' | 'fonts' | 'electron' | 'ui';
94
+ key: 'icon' | 'pwa' | 'auth' | 'image' | 'fonts' | 'electron' | 'ui' | 'pinia';
95
95
  modulePath: string;
96
96
  factoryExport?: string;
97
97
  pluginName: string;
package/dist/index.js CHANGED
@@ -43,6 +43,12 @@ const BUILTIN_MODULES = [
43
43
  modulePath: "@ubean/ui/vite",
44
44
  factoryExport: "ubeanUiPlugin",
45
45
  pluginName: "ubean:ui"
46
+ },
47
+ {
48
+ key: "pinia",
49
+ modulePath: "@ubean/pinia/vite",
50
+ factoryExport: "ubeanPiniaPlugin",
51
+ pluginName: "ubean:pinia"
46
52
  }
47
53
  ];
48
54
  function getBuiltinModuleByKey(key) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ubean/modules",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "Module system for ubean (resolveModules, defineModule, BUILTIN_MODULES)",
5
5
  "files": [
6
6
  "dist"
@@ -18,14 +18,14 @@
18
18
  "dependencies": {
19
19
  "consola": "^3.4.2",
20
20
  "hookable": "^6.1.1",
21
- "@ubean/app": "0.1.7",
22
- "@ubean/types": "0.1.7",
23
- "@ubean/config": "0.1.7"
21
+ "@ubean/app": "0.1.8",
22
+ "@ubean/config": "0.1.8",
23
+ "@ubean/types": "0.1.8"
24
24
  },
25
25
  "devDependencies": {
26
- "@types/node": "^26.1.1",
26
+ "@types/node": "^26.1.2",
27
27
  "hono": "4.12.32",
28
- "typescript": "6.0.3",
28
+ "typescript": "7.0.2",
29
29
  "vite": "^8.1.5",
30
30
  "vite-plus": "0.2.6"
31
31
  },