@soubiran/vite 0.1.2 → 0.1.3
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/vite.config.d.mts +4 -1
- package/dist/vite.config.mjs +1 -1
- package/package.json +2 -2
package/dist/vite.config.d.mts
CHANGED
|
@@ -24,6 +24,9 @@ interface StructuredDataPageConfig {
|
|
|
24
24
|
breadcrumbItems?: BreadcrumbItem[];
|
|
25
25
|
}
|
|
26
26
|
//#endregion
|
|
27
|
+
//#region src/utils.d.ts
|
|
28
|
+
declare function getUri(id: string): string;
|
|
29
|
+
//#endregion
|
|
27
30
|
//#region vite.config.d.ts
|
|
28
31
|
/**
|
|
29
32
|
* Main configuration interface for the infrastructure status app.
|
|
@@ -76,4 +79,4 @@ interface Options$1 {
|
|
|
76
79
|
}
|
|
77
80
|
declare const _default: (title: string, hostname: string, options: Options$1, config?: UserConfig) => Record<string, any>;
|
|
78
81
|
//#endregion
|
|
79
|
-
export { type BreadcrumbItem, type PersonOptions, type StructuredDataPageConfig, _default as default };
|
|
82
|
+
export { type BreadcrumbItem, type PersonOptions, type StructuredDataPageConfig, _default as default, getUri };
|
package/dist/vite.config.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@soubiran/vite",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.3",
|
|
5
5
|
"author": "Estéban Soubiran <esteban@soubiran.dev>",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"funding": "https://github.com/sponsors/Barbapapazes",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"vite": "npm:rolldown-vite@7.1.20",
|
|
55
55
|
"vite-ssg": "^28.2.2",
|
|
56
56
|
"vue-router": "^4.6.3",
|
|
57
|
-
"@soubiran/ui": "0.1.
|
|
57
|
+
"@soubiran/ui": "0.1.3"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
60
|
"tsdown": "^0.18.3"
|