vitrify 0.16.2 → 0.16.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/types/bin/dev.d.ts +13 -1
- package/package.json +18 -18
package/dist/types/bin/dev.d.ts
CHANGED
|
@@ -28,7 +28,7 @@ export declare function createServer({ port, logLevel, ssr, framework, host, app
|
|
|
28
28
|
}): Promise<{
|
|
29
29
|
app: FastifyInstance<import("fastify").RawServerDefault, import("http").IncomingMessage, import("http").ServerResponse<import("http").IncomingMessage>, import("fastify").FastifyBaseLogger, import("fastify").FastifyTypeProviderDefault> | undefined;
|
|
30
30
|
server: Server;
|
|
31
|
-
config: Readonly<Omit<import("vite").UserConfig, "build" | "plugins" | "css" | "assetsInclude" | "
|
|
31
|
+
config: Readonly<Omit<import("vite").UserConfig, "server" | "build" | "dev" | "optimizeDeps" | "plugins" | "css" | "json" | "assetsInclude" | "preview" | "worker" | "environments"> & {
|
|
32
32
|
configFile: string | undefined;
|
|
33
33
|
configFileDependencies: string[];
|
|
34
34
|
inlineConfig: InlineConfig;
|
|
@@ -47,8 +47,11 @@ export declare function createServer({ port, logLevel, ssr, framework, host, app
|
|
|
47
47
|
};
|
|
48
48
|
plugins: readonly import("vite").Plugin[];
|
|
49
49
|
css: import("vite").ResolvedCSSOptions;
|
|
50
|
+
json: Required<import("vite").JsonOptions>;
|
|
50
51
|
esbuild: import("vite").ESBuildOptions | false;
|
|
51
52
|
server: import("vite").ResolvedServerOptions;
|
|
53
|
+
dev: import("vite").ResolvedDevEnvironmentOptions;
|
|
54
|
+
builder: Required<import("vite").BuilderOptions> | undefined;
|
|
52
55
|
build: import("vite").ResolvedBuildOptions;
|
|
53
56
|
preview: import("vite").ResolvedPreviewOptions;
|
|
54
57
|
ssr: import("vite").ResolvedSSROptions;
|
|
@@ -59,6 +62,15 @@ export declare function createServer({ port, logLevel, ssr, framework, host, app
|
|
|
59
62
|
worker: import("vite").ResolvedWorkerOptions;
|
|
60
63
|
appType: import("vite").AppType;
|
|
61
64
|
experimental: import("vite").ExperimentalOptions;
|
|
65
|
+
environments: Record<string, {
|
|
66
|
+
define?: Record<string, any>;
|
|
67
|
+
resolve: Required<import("vite").ResolveOptions>;
|
|
68
|
+
consumer: "client" | "server";
|
|
69
|
+
keepProcessEnv?: boolean;
|
|
70
|
+
optimizeDeps: import("vite").DepOptimizationOptions;
|
|
71
|
+
dev: import("vite").ResolvedDevEnvironmentOptions;
|
|
72
|
+
build: import("vite").ResolvedBuildEnvironmentOptions;
|
|
73
|
+
}>;
|
|
62
74
|
} & import("vite").PluginHookUtils>;
|
|
63
75
|
vite: ViteDevServer;
|
|
64
76
|
}>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vitrify",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Stefan van Herwijnen",
|
|
6
6
|
"description": "Vite as your Full Stack development tool",
|
|
@@ -45,8 +45,8 @@
|
|
|
45
45
|
"homepage": "https://github.com/simsustech/vitrify/tree/main/#readme",
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@fastify/middie": "^9.0.2",
|
|
48
|
-
"@fastify/static": "^8.0.
|
|
49
|
-
"@vitejs/plugin-vue": "^5.2.
|
|
48
|
+
"@fastify/static": "^8.0.3",
|
|
49
|
+
"@vitejs/plugin-vue": "^5.2.1",
|
|
50
50
|
"ajv": "^8.17.1",
|
|
51
51
|
"cac": "^6.7.14",
|
|
52
52
|
"chalk": "^5.3.0",
|
|
@@ -57,17 +57,17 @@
|
|
|
57
57
|
"glob": "^11.0.0",
|
|
58
58
|
"happy-dom": "^15.11.6",
|
|
59
59
|
"is-port-reachable": "^4.0.0",
|
|
60
|
-
"magic-string": "^0.30.
|
|
60
|
+
"magic-string": "^0.30.14",
|
|
61
61
|
"merge-deep": "^3.0.3",
|
|
62
62
|
"readline": "^1.3.0",
|
|
63
63
|
"rollup-plugin-visualizer": "^5.12.0",
|
|
64
64
|
"sass": "1.81.0",
|
|
65
65
|
"ts-node": "^10.9.2",
|
|
66
|
-
"unplugin-vue-components": "^0.27.
|
|
67
|
-
"vite": "^
|
|
66
|
+
"unplugin-vue-components": "^0.27.5",
|
|
67
|
+
"vite": "^6.0.1",
|
|
68
68
|
"vite-plugin-pwa": "^0.21.0",
|
|
69
|
-
"vitefu": "^1.0.
|
|
70
|
-
"vitest": "^2.1.
|
|
69
|
+
"vitefu": "^1.0.4",
|
|
70
|
+
"vitest": "^2.1.6",
|
|
71
71
|
"workbox-window": "^7.3.0"
|
|
72
72
|
},
|
|
73
73
|
"devDependencies": {
|
|
@@ -75,21 +75,21 @@
|
|
|
75
75
|
"@types/connect": "^3.4.38",
|
|
76
76
|
"@types/glob": "^8.1.0",
|
|
77
77
|
"@types/merge-deep": "^3.0.3",
|
|
78
|
-
"@types/node": "^22.
|
|
78
|
+
"@types/node": "^22.10.0",
|
|
79
79
|
"@types/ws": "^8.5.13",
|
|
80
80
|
"@vue/runtime-core": "^3.5.13",
|
|
81
|
-
"quasar": "^2.17.
|
|
82
|
-
"rollup": "^4.27.
|
|
83
|
-
"typescript": "^5.
|
|
81
|
+
"quasar": "^2.17.4",
|
|
82
|
+
"rollup": "^4.27.4",
|
|
83
|
+
"typescript": "^5.7.2",
|
|
84
84
|
"vue": "^3.5.13",
|
|
85
|
-
"vue-router": "^4.
|
|
85
|
+
"vue-router": "^4.5.0"
|
|
86
86
|
},
|
|
87
87
|
"peerDependencies": {
|
|
88
|
-
"@fastify/static": "^
|
|
89
|
-
"fastify": "^
|
|
90
|
-
"quasar": "^2.
|
|
91
|
-
"vue": "^3.
|
|
92
|
-
"vue-router": "^4.
|
|
88
|
+
"@fastify/static": "^8.0.3",
|
|
89
|
+
"fastify": "^5.1.0",
|
|
90
|
+
"quasar": "^2.17.4",
|
|
91
|
+
"vue": "^3.5.13",
|
|
92
|
+
"vue-router": "^4.5.0"
|
|
93
93
|
},
|
|
94
94
|
"publishConfig": {
|
|
95
95
|
"access": "public",
|