@skybridge/vite-plugin 0.0.0-dev.50c10e1 → 0.0.0-dev.6e00674
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/README.md +4 -0
- package/dist/evals/index.d.ts +3 -0
- package/dist/evals/index.d.ts.map +1 -0
- package/dist/evals/index.js +2 -0
- package/dist/evals/index.js.map +1 -0
- package/dist/evals/matchers.d.ts +24 -0
- package/dist/evals/matchers.d.ts.map +1 -0
- package/dist/evals/matchers.js +100 -0
- package/dist/evals/matchers.js.map +1 -0
- package/dist/evals/types.d.ts +27 -0
- package/dist/evals/types.d.ts.map +1 -0
- package/dist/evals/types.js +2 -0
- package/dist/evals/types.js.map +1 -0
- package/dist/index.d.ts +1 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +0 -1
- package/dist/index.js.map +1 -1
- package/dist/plugin.d.ts +15 -23
- package/dist/plugin.d.ts.map +1 -1
- package/dist/plugin.js +27 -29
- package/dist/plugin.js.map +1 -1
- package/package.json +15 -3
- package/dist/scan-views.d.ts +0 -17
- package/dist/scan-views.d.ts.map +0 -1
- package/dist/scan-views.js +0 -88
- package/dist/scan-views.js.map +0 -1
- package/dist/validate-view.d.ts +0 -2
- package/dist/validate-view.d.ts.map +0 -1
- package/dist/validate-view.js +0 -9
- package/dist/validate-view.js.map +0 -1
package/README.md
CHANGED
|
@@ -4,6 +4,10 @@ The Vite plugin behind [Skybridge](https://skybridge.tech): it discovers view
|
|
|
4
4
|
modules, serves them as virtual entries, applies the `data-llm` transform, and
|
|
5
5
|
tells `skybridge build` which packages to leave unbundled.
|
|
6
6
|
|
|
7
|
+
Its `evals` option wires up [`@skybridge/test`](https://www.npmjs.com/package/@skybridge/test),
|
|
8
|
+
which boots the server and extends vitest's assertions with chat-oriented
|
|
9
|
+
matchers for checking that a prompt reaches the right tool.
|
|
10
|
+
|
|
7
11
|
Projects created with `npm create skybridge` already have it wired up.
|
|
8
12
|
|
|
9
13
|
```ts
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/evals/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,aAAa,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;AACjE,YAAY,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/evals/index.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import "vitest";
|
|
2
|
+
import type { ToolInput, ToolNames } from "skybridge/server";
|
|
3
|
+
import type { ChatLike } from "./types.js";
|
|
4
|
+
/**
|
|
5
|
+
* Assertions about the tool calls a conversation produced. Kept off vitest's
|
|
6
|
+
* global `Matchers` so they never appear on unrelated `expect()` calls, and so
|
|
7
|
+
* this stays the one place later tool-call helpers are added.
|
|
8
|
+
*/
|
|
9
|
+
export interface ChatMatchers<App> {
|
|
10
|
+
toHaveCalledToolOnce<Name extends ToolNames<App>>(name: Name, args?: Partial<ToolInput<App, Name>>): void;
|
|
11
|
+
toHaveCalledToolWith<Name extends ToolNames<App>>(name: Name, args: Partial<ToolInput<App, Name>>): void;
|
|
12
|
+
toNeverHaveCalledTool<Name extends ToolNames<App>>(name: Name): void;
|
|
13
|
+
toHaveFailedToolCall<Name extends ToolNames<App>>(name: Name): void;
|
|
14
|
+
toHaveSaid(text: string | RegExp): void;
|
|
15
|
+
}
|
|
16
|
+
export interface ChatAssertion<App> extends ChatMatchers<App> {
|
|
17
|
+
not: ChatMatchers<App>;
|
|
18
|
+
}
|
|
19
|
+
declare module "vitest" {
|
|
20
|
+
interface ExpectStatic {
|
|
21
|
+
chat<App>(chat: ChatLike<App>): ChatAssertion<App>;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
//# sourceMappingURL=matchers.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"matchers.d.ts","sourceRoot":"","sources":["../../src/evals/matchers.ts"],"names":[],"mappings":"AAAA,OAAO,QAAQ,CAAC;AAChB,OAAO,KAAK,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAE7D,OAAO,KAAK,EAAE,QAAQ,EAAY,MAAM,YAAY,CAAC;AAErD;;;;GAIG;AACH,MAAM,WAAW,YAAY,CAAC,GAAG;IAC/B,oBAAoB,CAAC,IAAI,SAAS,SAAS,CAAC,GAAG,CAAC,EAC9C,IAAI,EAAE,IAAI,EACV,IAAI,CAAC,EAAE,OAAO,CAAC,SAAS,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC,GACnC,IAAI,CAAC;IACR,oBAAoB,CAAC,IAAI,SAAS,SAAS,CAAC,GAAG,CAAC,EAC9C,IAAI,EAAE,IAAI,EACV,IAAI,EAAE,OAAO,CAAC,SAAS,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC,GAClC,IAAI,CAAC;IACR,qBAAqB,CAAC,IAAI,SAAS,SAAS,CAAC,GAAG,CAAC,EAAE,IAAI,EAAE,IAAI,GAAG,IAAI,CAAC;IACrE,oBAAoB,CAAC,IAAI,SAAS,SAAS,CAAC,GAAG,CAAC,EAAE,IAAI,EAAE,IAAI,GAAG,IAAI,CAAC;IACpE,UAAU,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAC;CACzC;AAED,MAAM,WAAW,aAAa,CAAC,GAAG,CAAE,SAAQ,YAAY,CAAC,GAAG,CAAC;IAC3D,GAAG,EAAE,YAAY,CAAC,GAAG,CAAC,CAAC;CACxB;AAED,OAAO,QAAQ,QAAQ,CAAC;IACtB,UAAU,YAAY;QACpB,IAAI,CAAC,GAAG,EAAE,IAAI,EAAE,QAAQ,CAAC,GAAG,CAAC,GAAG,aAAa,CAAC,GAAG,CAAC,CAAC;KACpD;CACF"}
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
import "vitest";
|
|
2
|
+
import { expect } from "vitest";
|
|
3
|
+
function attemptedCalls(chat, name) {
|
|
4
|
+
return chat.toolCalls.filter((call) => String(call.name) === name);
|
|
5
|
+
}
|
|
6
|
+
function acceptedCalls(chat, name) {
|
|
7
|
+
return attemptedCalls(chat, name).filter((call) => call.failed === undefined);
|
|
8
|
+
}
|
|
9
|
+
function observed(chat) {
|
|
10
|
+
if (chat.toolCalls.length === 0) {
|
|
11
|
+
return " (no tool was called)";
|
|
12
|
+
}
|
|
13
|
+
return chat.toolCalls
|
|
14
|
+
.map((call, index) => ` ${index + 1}. ${call.name} ${JSON.stringify(call.arguments)}${call.failed === undefined ? "" : ` (failed: ${call.failed})`}`)
|
|
15
|
+
.join("\n");
|
|
16
|
+
}
|
|
17
|
+
function collapse(text) {
|
|
18
|
+
return text.replace(/\s+/g, " ").trim();
|
|
19
|
+
}
|
|
20
|
+
function said(chat, text) {
|
|
21
|
+
return chat.assistantTurns.some((turn) => typeof text === "string"
|
|
22
|
+
? collapse(turn).toLowerCase().includes(collapse(text).toLowerCase())
|
|
23
|
+
: text.test(turn));
|
|
24
|
+
}
|
|
25
|
+
function spoken(chat) {
|
|
26
|
+
if (chat.assistantTurns.length === 0) {
|
|
27
|
+
return " (the assistant said nothing)";
|
|
28
|
+
}
|
|
29
|
+
return chat.assistantTurns
|
|
30
|
+
.map((turn, index) => ` ${index + 1}. ${collapse(turn)}`)
|
|
31
|
+
.join("\n");
|
|
32
|
+
}
|
|
33
|
+
function report(chat, summary) {
|
|
34
|
+
return `${summary}
|
|
35
|
+
|
|
36
|
+
Calls the model actually made:
|
|
37
|
+
${observed(chat)}`;
|
|
38
|
+
}
|
|
39
|
+
expect.extend({
|
|
40
|
+
toHaveCalledToolOnce(received, name, args) {
|
|
41
|
+
const matching = acceptedCalls(received, name);
|
|
42
|
+
const argsMatch = args === undefined ||
|
|
43
|
+
(matching.length === 1 &&
|
|
44
|
+
this.equals(matching[0]?.arguments, expect.objectContaining(args)));
|
|
45
|
+
const pass = matching.length === 1 && argsMatch;
|
|
46
|
+
return {
|
|
47
|
+
pass,
|
|
48
|
+
message: () => report(received, pass
|
|
49
|
+
? `Expected "${name}" not to be called exactly once.`
|
|
50
|
+
: matching.length === 1
|
|
51
|
+
? `Expected "${name}" to be called once with ${JSON.stringify(args)}, but it was called with ${JSON.stringify(matching[0]?.arguments)}.`
|
|
52
|
+
: `Expected "${name}" to be called exactly once by a call that succeeded, but ${matching.length} such calls were made.`),
|
|
53
|
+
};
|
|
54
|
+
},
|
|
55
|
+
toHaveCalledToolWith(received, name, args) {
|
|
56
|
+
const pass = acceptedCalls(received, name).some((call) => this.equals(call.arguments, expect.objectContaining(args)));
|
|
57
|
+
return {
|
|
58
|
+
pass,
|
|
59
|
+
message: () => report(received, pass
|
|
60
|
+
? `Expected no call to "${name}" with ${JSON.stringify(args)}.`
|
|
61
|
+
: `Expected "${name}" to be called with ${JSON.stringify(args)}.`),
|
|
62
|
+
};
|
|
63
|
+
},
|
|
64
|
+
toHaveFailedToolCall(received, name) {
|
|
65
|
+
const attempted = attemptedCalls(received, name);
|
|
66
|
+
const failed = attempted.filter((call) => call.failed !== undefined);
|
|
67
|
+
return {
|
|
68
|
+
pass: failed.length > 0,
|
|
69
|
+
message: () => report(received, failed.length > 0
|
|
70
|
+
? `Expected every call to "${name}" to succeed.`
|
|
71
|
+
: attempted.length === 0
|
|
72
|
+
? `Expected "${name}" to be called and fail, but it was never called.`
|
|
73
|
+
: `Expected "${name}" to fail, but all ${attempted.length} calls succeeded.`),
|
|
74
|
+
};
|
|
75
|
+
},
|
|
76
|
+
toHaveSaid(received, text) {
|
|
77
|
+
const pass = said(received, text);
|
|
78
|
+
const wanted = typeof text === "string" ? `"${text}"` : String(text);
|
|
79
|
+
return {
|
|
80
|
+
pass,
|
|
81
|
+
message: () => `${pass
|
|
82
|
+
? `Expected the assistant not to say ${wanted}.`
|
|
83
|
+
: `Expected the assistant to say ${wanted}.`}
|
|
84
|
+
|
|
85
|
+
What the assistant actually said:
|
|
86
|
+
${spoken(received)}`,
|
|
87
|
+
};
|
|
88
|
+
},
|
|
89
|
+
toNeverHaveCalledTool(received, name) {
|
|
90
|
+
const matching = attemptedCalls(received, name);
|
|
91
|
+
return {
|
|
92
|
+
pass: matching.length === 0,
|
|
93
|
+
message: () => report(received, matching.length === 0
|
|
94
|
+
? `Expected "${name}" to be called at least once.`
|
|
95
|
+
: `Expected "${name}" never to be called, but it was called ${matching.length} times.`),
|
|
96
|
+
};
|
|
97
|
+
},
|
|
98
|
+
});
|
|
99
|
+
expect.chat = (chat) => expect(chat);
|
|
100
|
+
//# sourceMappingURL=matchers.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"matchers.js","sourceRoot":"","sources":["../../src/evals/matchers.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { ToolInput, ToolNames } from "skybridge/server";
|
|
2
|
+
import type { EvalsOptions } from "../plugin.js";
|
|
3
|
+
/**
|
|
4
|
+
* One recorded call, typed against the project's own registry: `name` is a
|
|
5
|
+
* union of the project's tool names and `arguments` is discriminated on it.
|
|
6
|
+
* `failed` carries the server's reason when the call did not go through.
|
|
7
|
+
*/
|
|
8
|
+
export type ToolCall<App> = {
|
|
9
|
+
[Name in ToolNames<App>]: {
|
|
10
|
+
name: Name;
|
|
11
|
+
arguments: ToolInput<App, Name>;
|
|
12
|
+
failed?: string;
|
|
13
|
+
};
|
|
14
|
+
}[ToolNames<App>];
|
|
15
|
+
/** The part of a conversation the matchers assert on. */
|
|
16
|
+
export interface ChatLike<App> {
|
|
17
|
+
/** Type-only anchor so `expect.chat` infers `App` from the conversation. */
|
|
18
|
+
readonly $app?: App;
|
|
19
|
+
readonly toolCalls: ToolCall<App>[];
|
|
20
|
+
readonly assistantTurns: string[];
|
|
21
|
+
}
|
|
22
|
+
declare module "vitest" {
|
|
23
|
+
interface ProvidedContext {
|
|
24
|
+
skybridgeEvals: EvalsOptions | undefined;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/evals/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAC7D,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAEjD;;;;GAIG;AACH,MAAM,MAAM,QAAQ,CAAC,GAAG,IAAI;KACzB,IAAI,IAAI,SAAS,CAAC,GAAG,CAAC,GAAG;QACxB,IAAI,EAAE,IAAI,CAAC;QACX,SAAS,EAAE,SAAS,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC;QAChC,MAAM,CAAC,EAAE,MAAM,CAAC;KACjB;CACF,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC,CAAC;AAElB,yDAAyD;AACzD,MAAM,WAAW,QAAQ,CAAC,GAAG;IAC3B,4EAA4E;IAC5E,QAAQ,CAAC,IAAI,CAAC,EAAE,GAAG,CAAC;IACpB,QAAQ,CAAC,SAAS,EAAE,QAAQ,CAAC,GAAG,CAAC,EAAE,CAAC;IACpC,QAAQ,CAAC,cAAc,EAAE,MAAM,EAAE,CAAC;CACnC;AAED,OAAO,QAAQ,QAAQ,CAAC;IACtB,UAAU,eAAe;QACvB,cAAc,EAAE,YAAY,GAAG,SAAS,CAAC;KAC1C;CACF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/evals/types.ts"],"names":[],"mappings":""}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
export { type EvalsOptions, type
|
|
2
|
-
export { scanAndWriteViewsDts, scanViewsSync } from "./scan-views.js";
|
|
1
|
+
export { type EvalsOptions, type SkybridgePluginOptions, skybridge, } from "./plugin.js";
|
|
3
2
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,YAAY,EACjB,KAAK,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,YAAY,EACjB,KAAK,sBAAsB,EAC3B,SAAS,GACV,MAAM,aAAa,CAAC"}
|
package/dist/index.js
CHANGED
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,SAAS,GACV,MAAM,aAAa,CAAC"}
|
package/dist/plugin.d.ts
CHANGED
|
@@ -1,28 +1,19 @@
|
|
|
1
|
-
import type
|
|
1
|
+
import { type Plugin } from "vite";
|
|
2
2
|
/**
|
|
3
3
|
* Options for the eval runner, wired in through the `evals` plugin option and
|
|
4
4
|
* consumed by `@skybridge/test`. Defined here so the runtime package can
|
|
5
5
|
* import the shape while this package keeps no dependency on it.
|
|
6
6
|
*/
|
|
7
|
-
export interface ModelDescriptor {
|
|
8
|
-
provider: "anthropic";
|
|
9
|
-
name: string;
|
|
10
|
-
apiKeyEnv?: string;
|
|
11
|
-
}
|
|
12
|
-
export interface ModelFile {
|
|
13
|
-
file: string;
|
|
14
|
-
}
|
|
15
7
|
export interface EvalsOptions {
|
|
16
|
-
model: ModelDescriptor | ModelFile;
|
|
17
8
|
temperature?: number;
|
|
18
9
|
systemPrompt?: string;
|
|
19
10
|
maxSteps?: number;
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
11
|
+
/**
|
|
12
|
+
* Per-scenario timeout in milliseconds. Defaults to two minutes, because
|
|
13
|
+
* every turn in a scenario is a live model call and vitest's own 5s default
|
|
14
|
+
* expires mid-conversation.
|
|
15
|
+
*/
|
|
16
|
+
timeout?: number;
|
|
26
17
|
}
|
|
27
18
|
/** Options for the {@link skybridge} Vite plugin. */
|
|
28
19
|
export interface SkybridgePluginOptions {
|
|
@@ -35,12 +26,13 @@ export interface SkybridgePluginOptions {
|
|
|
35
26
|
*/
|
|
36
27
|
serverExternal?: string[];
|
|
37
28
|
/**
|
|
38
|
-
*
|
|
39
|
-
* `
|
|
40
|
-
*
|
|
41
|
-
*
|
|
42
|
-
*
|
|
43
|
-
*
|
|
29
|
+
* Registers the `expect.chat` matchers and, optionally, the defaults every
|
|
30
|
+
* conversation starts from (`temperature`, `systemPrompt`, `maxSteps`).
|
|
31
|
+
* Point vitest at this config to run the scenarios. Requires
|
|
32
|
+
* `@skybridge/test` as a dev dependency.
|
|
33
|
+
*
|
|
34
|
+
* Scenarios always run the app in-process via `start({ app })`, so
|
|
35
|
+
* `evals: {}` is enough to wire the matchers up.
|
|
44
36
|
*/
|
|
45
37
|
evals?: EvalsOptions;
|
|
46
38
|
}
|
|
@@ -70,5 +62,5 @@ export interface SkybridgePluginOptions {
|
|
|
70
62
|
* });
|
|
71
63
|
* ```
|
|
72
64
|
*/
|
|
73
|
-
export declare function skybridge(options?: SkybridgePluginOptions):
|
|
65
|
+
export declare function skybridge(options?: SkybridgePluginOptions): Plugin;
|
|
74
66
|
//# sourceMappingURL=plugin.d.ts.map
|
package/dist/plugin.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.d.ts","sourceRoot":"","sources":["../src/plugin.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"plugin.d.ts","sourceRoot":"","sources":["../src/plugin.ts"],"names":[],"mappings":"AAUA,OAAO,EAAW,KAAK,MAAM,EAAsB,MAAM,MAAM,CAAC;AAOhE;;;;GAIG;AACH,MAAM,WAAW,YAAY;IAC3B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,qDAAqD;AACrD,MAAM,WAAW,sBAAsB;IACrC,qEAAqE;IACrE,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;IAC1B;;;;;;;;OAQG;IACH,KAAK,CAAC,EAAE,YAAY,CAAC;CACtB;AAmBD;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,wBAAgB,SAAS,CAAC,OAAO,CAAC,EAAE,sBAAsB,GAAG,MAAM,CAElE"}
|
package/dist/plugin.js
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import { createRequire } from "node:module";
|
|
2
1
|
import { isAbsolute, relative, resolve } from "node:path";
|
|
3
|
-
import {
|
|
4
|
-
import { assertUniqueViewNames, discoverViewsSync, scanViewsSync, writeViewsDts, } from "
|
|
2
|
+
import { fileURLToPath } from "node:url";
|
|
3
|
+
import { assertUniqueViewNames, discoverViewsSync, hasDefaultExport, scanViewsSync, writeViewsDts, } from "skybridge/views";
|
|
4
|
+
import { loadEnv } from "vite";
|
|
5
5
|
import { transform as dataLlmTransform } from "./transform-data-llm.js";
|
|
6
|
-
import { hasDefaultExport } from "./validate-view.js";
|
|
7
6
|
const VIRTUAL_PREFIX = "/_skybridge/view/";
|
|
8
7
|
const VIRTUAL_MODULE_PREFIX = "\0skybridge:view:";
|
|
9
8
|
function buildVirtualEntry(viewFilePath) {
|
|
@@ -46,29 +45,12 @@ function getViewEntryPattern(viewsDir) {
|
|
|
46
45
|
* ```
|
|
47
46
|
*/
|
|
48
47
|
export function skybridge(options) {
|
|
49
|
-
|
|
50
|
-
const evals = options?.evals;
|
|
51
|
-
if (evals !== undefined) {
|
|
52
|
-
plugins.push(loadEvalsPlugin(evals));
|
|
53
|
-
}
|
|
54
|
-
return plugins;
|
|
48
|
+
return viewsPlugin(options);
|
|
55
49
|
}
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
*/
|
|
61
|
-
async function loadEvalsPlugin(evals) {
|
|
62
|
-
const projectRequire = createRequire(resolve(process.cwd(), "package.json"));
|
|
63
|
-
let resolved;
|
|
64
|
-
try {
|
|
65
|
-
resolved = projectRequire.resolve("@skybridge/test/plugin");
|
|
66
|
-
}
|
|
67
|
-
catch {
|
|
68
|
-
throw new Error("The `evals` option requires the @skybridge/test package. Install it as a dev dependency.");
|
|
69
|
-
}
|
|
70
|
-
const module = (await import(pathToFileURL(resolved).href));
|
|
71
|
-
return module.evals(evals);
|
|
50
|
+
const EVALS_DIR = "evals";
|
|
51
|
+
const DEFAULT_EVAL_TIMEOUT_MS = 120_000;
|
|
52
|
+
function here(file) {
|
|
53
|
+
return fileURLToPath(new URL(file, import.meta.url));
|
|
72
54
|
}
|
|
73
55
|
function viewsPlugin(options) {
|
|
74
56
|
const rawViewsDir = options?.viewsDir ?? "src/views";
|
|
@@ -82,7 +64,7 @@ function viewsPlugin(options) {
|
|
|
82
64
|
// Read by `skybridge build` to resolve viewsDir before `tsc -b` runs, and
|
|
83
65
|
// to feed esbuild's external list when bundling the server.
|
|
84
66
|
api: { viewsDir: rawViewsDir, serverExternal: options?.serverExternal },
|
|
85
|
-
config(config) {
|
|
67
|
+
config(config, { mode }) {
|
|
86
68
|
projectRoot = config.root || process.cwd();
|
|
87
69
|
resolvedViewsDir = isAbsolute(rawViewsDir)
|
|
88
70
|
? rawViewsDir
|
|
@@ -95,7 +77,7 @@ function viewsPlugin(options) {
|
|
|
95
77
|
for (const view of views) {
|
|
96
78
|
input[view.name] = `${VIRTUAL_PREFIX}${view.name}`;
|
|
97
79
|
}
|
|
98
|
-
|
|
80
|
+
const base = {
|
|
99
81
|
base: "/assets",
|
|
100
82
|
// Fixes "Invalid hook call" on createStore by forcing a single
|
|
101
83
|
// copy of React. Under pnpm's isolated node_modules, zustand
|
|
@@ -146,6 +128,22 @@ function viewsPlugin(options) {
|
|
|
146
128
|
},
|
|
147
129
|
},
|
|
148
130
|
};
|
|
131
|
+
if (!options?.evals) {
|
|
132
|
+
return base;
|
|
133
|
+
}
|
|
134
|
+
return {
|
|
135
|
+
...base,
|
|
136
|
+
test: {
|
|
137
|
+
setupFiles: [here("./evals/matchers.js")],
|
|
138
|
+
provide: { skybridgeEvals: options.evals },
|
|
139
|
+
include: [
|
|
140
|
+
"**/*.{test,spec}.?(c|m)[jt]s?(x)",
|
|
141
|
+
`${EVALS_DIR}/**/*.eval.?(c|m)ts`,
|
|
142
|
+
],
|
|
143
|
+
testTimeout: options.evals.timeout ?? DEFAULT_EVAL_TIMEOUT_MS,
|
|
144
|
+
env: loadEnv(mode, projectRoot, ""),
|
|
145
|
+
},
|
|
146
|
+
};
|
|
149
147
|
},
|
|
150
148
|
resolveId(id) {
|
|
151
149
|
if (id.startsWith(VIRTUAL_PREFIX)) {
|
|
@@ -217,7 +215,7 @@ function viewsPlugin(options) {
|
|
|
217
215
|
server.watcher.on("unlink", rescan);
|
|
218
216
|
},
|
|
219
217
|
async transform(code, id) {
|
|
220
|
-
if (viewEntryPattern?.test(id) && !hasDefaultExport(code
|
|
218
|
+
if (viewEntryPattern?.test(id) && !hasDefaultExport(code)) {
|
|
221
219
|
this.warn(`View file "${id.split("/").pop()}" is missing a default export.`);
|
|
222
220
|
}
|
|
223
221
|
return await dataLlmTransform(code, id);
|
package/dist/plugin.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.js","sourceRoot":"","sources":["../src/plugin.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"plugin.js","sourceRoot":"","sources":["../src/plugin.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skybridge/vite-plugin",
|
|
3
|
-
"version": "0.0.0-dev.
|
|
3
|
+
"version": "0.0.0-dev.6e00674",
|
|
4
4
|
"description": "The Skybridge Vite plugin: view discovery, data-llm transforms, and eval wiring",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"type": "module",
|
|
@@ -12,6 +12,10 @@
|
|
|
12
12
|
".": {
|
|
13
13
|
"types": "./dist/index.d.ts",
|
|
14
14
|
"default": "./dist/index.js"
|
|
15
|
+
},
|
|
16
|
+
"./evals": {
|
|
17
|
+
"types": "./dist/evals/index.d.ts",
|
|
18
|
+
"default": "./dist/evals/index.js"
|
|
15
19
|
}
|
|
16
20
|
},
|
|
17
21
|
"files": [
|
|
@@ -21,18 +25,26 @@
|
|
|
21
25
|
"@babel/core": "^7.29.7"
|
|
22
26
|
},
|
|
23
27
|
"peerDependencies": {
|
|
24
|
-
"
|
|
28
|
+
"skybridge": "^2.0.0",
|
|
29
|
+
"vite": ">=7.3.1",
|
|
30
|
+
"vitest": ">=4.1.0"
|
|
25
31
|
},
|
|
26
32
|
"devDependencies": {
|
|
27
33
|
"@types/babel__core": "^7.20.5",
|
|
28
34
|
"@types/node": "^24.13.3",
|
|
29
35
|
"typescript": "^5.9.3",
|
|
30
36
|
"vite": "^8.1.5",
|
|
31
|
-
"vitest": "^4.1.10"
|
|
37
|
+
"vitest": "^4.1.10",
|
|
38
|
+
"skybridge": "0.0.0-dev.6e00674"
|
|
32
39
|
},
|
|
33
40
|
"engines": {
|
|
34
41
|
"node": ">=22.23.1"
|
|
35
42
|
},
|
|
43
|
+
"peerDependenciesMeta": {
|
|
44
|
+
"vitest": {
|
|
45
|
+
"optional": true
|
|
46
|
+
}
|
|
47
|
+
},
|
|
36
48
|
"scripts": {
|
|
37
49
|
"build": "tsc -p tsconfig.json",
|
|
38
50
|
"format": "biome check --write --error-on-warnings",
|
package/dist/scan-views.d.ts
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
export interface DiscoveredView {
|
|
2
|
-
name: string;
|
|
3
|
-
filePath: string;
|
|
4
|
-
}
|
|
5
|
-
export interface InvalidView {
|
|
6
|
-
filePath: string;
|
|
7
|
-
}
|
|
8
|
-
export declare function scanViewsSync(viewsDir: string): {
|
|
9
|
-
valid: DiscoveredView[];
|
|
10
|
-
invalid: InvalidView[];
|
|
11
|
-
};
|
|
12
|
-
export declare function assertUniqueViewNames(views: DiscoveredView[]): void;
|
|
13
|
-
export declare function discoverViewsSync(viewsDir: string): DiscoveredView[];
|
|
14
|
-
export declare function generateViewsDts(views: DiscoveredView[]): string;
|
|
15
|
-
export declare function writeViewsDts(projectRoot: string, views: DiscoveredView[]): void;
|
|
16
|
-
export declare function scanAndWriteViewsDts(projectRoot?: string, viewsDir?: string): void;
|
|
17
|
-
//# sourceMappingURL=scan-views.d.ts.map
|
package/dist/scan-views.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"scan-views.d.ts","sourceRoot":"","sources":["../src/scan-views.ts"],"names":[],"mappings":"AAIA,MAAM,WAAW,cAAc;IAC7B,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,MAAM,WAAW,WAAW;IAC1B,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,wBAAgB,aAAa,CAAC,QAAQ,EAAE,MAAM,GAAG;IAC/C,KAAK,EAAE,cAAc,EAAE,CAAC;IACxB,OAAO,EAAE,WAAW,EAAE,CAAC;CACxB,CAmCA;AAED,wBAAgB,qBAAqB,CAAC,KAAK,EAAE,cAAc,EAAE,GAAG,IAAI,CAenE;AAED,wBAAgB,iBAAiB,CAAC,QAAQ,EAAE,MAAM,GAAG,cAAc,EAAE,CAIpE;AAED,wBAAgB,gBAAgB,CAAC,KAAK,EAAE,cAAc,EAAE,GAAG,MAAM,CAYhE;AAED,wBAAgB,aAAa,CAC3B,WAAW,EAAE,MAAM,EACnB,KAAK,EAAE,cAAc,EAAE,GACtB,IAAI,CAiBN;AAED,wBAAgB,oBAAoB,CAClC,WAAW,CAAC,EAAE,MAAM,EACpB,QAAQ,CAAC,EAAE,MAAM,GAChB,IAAI,CAON"}
|
package/dist/scan-views.js
DELETED
|
@@ -1,88 +0,0 @@
|
|
|
1
|
-
import { globSync, mkdirSync, readFileSync, writeFileSync } from "node:fs";
|
|
2
|
-
import { basename, dirname, isAbsolute, join, parse, resolve } from "node:path";
|
|
3
|
-
import { hasDefaultExport } from "./validate-view.js";
|
|
4
|
-
export function scanViewsSync(viewsDir) {
|
|
5
|
-
const flatPattern = resolve(viewsDir, "*.{tsx,jsx}");
|
|
6
|
-
const dirPattern = resolve(viewsDir, "*/index.{tsx,jsx}");
|
|
7
|
-
const flatFiles = globSync(flatPattern).map((file) => ({
|
|
8
|
-
name: parse(file).name,
|
|
9
|
-
filePath: file,
|
|
10
|
-
}));
|
|
11
|
-
const dirFiles = globSync(dirPattern).map((file) => ({
|
|
12
|
-
name: basename(dirname(file)),
|
|
13
|
-
filePath: file,
|
|
14
|
-
}));
|
|
15
|
-
// A barrel file like `views/foo/index.tsx` (no default export) must not
|
|
16
|
-
// falsely collide with a sibling `views/foo.tsx`. Drop top-level `index`
|
|
17
|
-
// before splitting valid vs invalid.
|
|
18
|
-
const candidates = [...flatFiles, ...dirFiles].filter((v) => v.name !== "index");
|
|
19
|
-
const valid = [];
|
|
20
|
-
const invalid = [];
|
|
21
|
-
for (const candidate of candidates) {
|
|
22
|
-
const code = readFileSync(candidate.filePath, "utf-8");
|
|
23
|
-
if (hasDefaultExport(code, candidate.filePath)) {
|
|
24
|
-
valid.push(candidate);
|
|
25
|
-
}
|
|
26
|
-
else {
|
|
27
|
-
invalid.push({
|
|
28
|
-
filePath: candidate.filePath,
|
|
29
|
-
});
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
return { valid, invalid };
|
|
33
|
-
}
|
|
34
|
-
export function assertUniqueViewNames(views) {
|
|
35
|
-
const nameMap = new Map();
|
|
36
|
-
for (const view of views) {
|
|
37
|
-
const paths = nameMap.get(view.name) ?? [];
|
|
38
|
-
paths.push(view.filePath);
|
|
39
|
-
nameMap.set(view.name, paths);
|
|
40
|
-
}
|
|
41
|
-
for (const [name, paths] of nameMap) {
|
|
42
|
-
if (paths.length > 1) {
|
|
43
|
-
throw new Error(`skybridge: duplicate view name "${name}" resolved from:\n - ${paths.join("\n - ")}\nRename one of the files to avoid the conflict.`);
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
export function discoverViewsSync(viewsDir) {
|
|
48
|
-
const { valid } = scanViewsSync(viewsDir);
|
|
49
|
-
assertUniqueViewNames(valid);
|
|
50
|
-
return valid;
|
|
51
|
-
}
|
|
52
|
-
export function generateViewsDts(views) {
|
|
53
|
-
const entries = views.map((v) => ` "${v.name}": true;`).join("\n");
|
|
54
|
-
return [
|
|
55
|
-
"export {};",
|
|
56
|
-
"",
|
|
57
|
-
'declare module "skybridge/server" {',
|
|
58
|
-
" interface ViewNameRegistry {",
|
|
59
|
-
entries,
|
|
60
|
-
" }",
|
|
61
|
-
"}",
|
|
62
|
-
"",
|
|
63
|
-
].join("\n");
|
|
64
|
-
}
|
|
65
|
-
export function writeViewsDts(projectRoot, views) {
|
|
66
|
-
const dir = join(projectRoot, ".skybridge");
|
|
67
|
-
mkdirSync(dir, { recursive: true });
|
|
68
|
-
const filePath = join(dir, "views.d.ts");
|
|
69
|
-
const content = generateViewsDts(views);
|
|
70
|
-
try {
|
|
71
|
-
const existing = readFileSync(filePath, "utf-8");
|
|
72
|
-
if (existing === content) {
|
|
73
|
-
return;
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
catch {
|
|
77
|
-
// File doesn't exist yet
|
|
78
|
-
}
|
|
79
|
-
writeFileSync(filePath, content, "utf-8");
|
|
80
|
-
}
|
|
81
|
-
export function scanAndWriteViewsDts(projectRoot, viewsDir) {
|
|
82
|
-
const root = projectRoot ?? process.cwd();
|
|
83
|
-
const rawDir = viewsDir ?? "src/views";
|
|
84
|
-
const resolvedDir = isAbsolute(rawDir) ? rawDir : resolve(root, rawDir);
|
|
85
|
-
const views = discoverViewsSync(resolvedDir);
|
|
86
|
-
writeViewsDts(root, views);
|
|
87
|
-
}
|
|
88
|
-
//# sourceMappingURL=scan-views.js.map
|
package/dist/scan-views.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"scan-views.js","sourceRoot":"","sources":["../src/scan-views.ts"],"names":[],"mappings":"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"}
|
package/dist/validate-view.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"validate-view.d.ts","sourceRoot":"","sources":["../src/validate-view.ts"],"names":[],"mappings":"AAIA,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,MAAM,GAAG,OAAO,CAM1E"}
|
package/dist/validate-view.js
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
function stripComments(code) {
|
|
2
|
-
return code.replace(/\/\/.*$/gm, "").replace(/\/\*[\s\S]*?\*\//g, "");
|
|
3
|
-
}
|
|
4
|
-
export function hasDefaultExport(code, _filePath) {
|
|
5
|
-
const stripped = stripComments(code);
|
|
6
|
-
return (/export\s+default\s/.test(stripped) ||
|
|
7
|
-
/export\s*\{[^}]*\bas\s+default\b[^}]*}/.test(stripped));
|
|
8
|
-
}
|
|
9
|
-
//# sourceMappingURL=validate-view.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"validate-view.js","sourceRoot":"","sources":["../src/validate-view.ts"],"names":[],"mappings":"AAAA,SAAS,aAAa,CAAC,IAAY;IACjC,OAAO,IAAI,CAAC,OAAO,CAAC,WAAW,EAAE,EAAE,CAAC,CAAC,OAAO,CAAC,mBAAmB,EAAE,EAAE,CAAC,CAAC;AACxE,CAAC;AAED,MAAM,UAAU,gBAAgB,CAAC,IAAY,EAAE,SAAkB;IAC/D,MAAM,QAAQ,GAAG,aAAa,CAAC,IAAI,CAAC,CAAC;IACrC,OAAO,CACL,oBAAoB,CAAC,IAAI,CAAC,QAAQ,CAAC;QACnC,wCAAwC,CAAC,IAAI,CAAC,QAAQ,CAAC,CACxD,CAAC;AACJ,CAAC"}
|