@squadbase/vite-server 0.1.19-dev.2880e8d → 0.1.19-dev.40d2ebd
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/build-entry/server-entry.mjs +13 -18
- package/dist/cli/index.js +460 -417
- package/dist/connectors/google-analytics-oauth.js +192 -96
- package/dist/index.d.ts +5 -22
- package/dist/index.js +617 -499
- package/dist/main.d.ts +1 -1
- package/dist/main.js +620 -502
- package/dist/types/server-logic.d.ts +0 -3
- package/dist/vite-plugin.d.ts +1 -7
- package/dist/vite-plugin.js +47523 -41
- package/package.json +2 -1
|
@@ -174,10 +174,7 @@ interface SqlServerLogicDefinition extends BaseServerLogicDefinition {
|
|
|
174
174
|
}
|
|
175
175
|
interface TypeScriptServerLogicDefinition extends BaseServerLogicDefinition {
|
|
176
176
|
_isTypescript: true;
|
|
177
|
-
/** The `.ts` handler path as written in the JSON (relative), kept for metadata. */
|
|
178
177
|
_tsHandlerPath: string;
|
|
179
|
-
/** Lazily loads the handler module (build-time collected via import.meta.glob). */
|
|
180
|
-
_loadHandler: () => Promise<Record<string, unknown>>;
|
|
181
178
|
connectionId?: undefined;
|
|
182
179
|
_query?: undefined;
|
|
183
180
|
}
|
package/dist/vite-plugin.d.ts
CHANGED
|
@@ -1,15 +1,9 @@
|
|
|
1
1
|
import { Plugin } from 'vite';
|
|
2
2
|
|
|
3
3
|
interface SquadbasePluginOptions {
|
|
4
|
+
devEntry?: string;
|
|
4
5
|
external?: string[];
|
|
5
6
|
exclude?: RegExp[];
|
|
6
|
-
/**
|
|
7
|
-
* @deprecated No longer used — the dev server and the build now share a single
|
|
8
|
-
* shipped wrapper entry. Kept (and ignored) so existing dashboard
|
|
9
|
-
* `vite.config.ts` files that still pass these continue to type-check and run.
|
|
10
|
-
*/
|
|
11
|
-
buildEntry?: string;
|
|
12
|
-
devEntry?: string;
|
|
13
7
|
}
|
|
14
8
|
declare function squadbasePlugin(options?: SquadbasePluginOptions): Plugin[];
|
|
15
9
|
|