use-agentz 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/cli.js +10 -2
- package/dist/ui/web/index.html +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -25214,7 +25214,15 @@ async function buildWeb() {
|
|
|
25214
25214
|
root: dirname7(WEB_INDEX),
|
|
25215
25215
|
target: "browser",
|
|
25216
25216
|
minify: true,
|
|
25217
|
-
sourcemap: "none"
|
|
25217
|
+
sourcemap: "none",
|
|
25218
|
+
plugins: [
|
|
25219
|
+
{
|
|
25220
|
+
name: "ui-logo",
|
|
25221
|
+
setup(build) {
|
|
25222
|
+
build.onResolve({ filter: /(^|\/)logo\.png$/ }, () => ({ path: WEB_LOGO }));
|
|
25223
|
+
}
|
|
25224
|
+
}
|
|
25225
|
+
]
|
|
25218
25226
|
});
|
|
25219
25227
|
if (!result.success) {
|
|
25220
25228
|
const logs = result.logs.map((l4) => String(l4)).join(`
|
|
@@ -26170,7 +26178,7 @@ init_types();
|
|
|
26170
26178
|
// package.json
|
|
26171
26179
|
var package_default = {
|
|
26172
26180
|
name: "use-agentz",
|
|
26173
|
-
version: "0.1.
|
|
26181
|
+
version: "0.1.3",
|
|
26174
26182
|
description: "AgentZ is a Bun-native AI agent setup builder.",
|
|
26175
26183
|
type: "module",
|
|
26176
26184
|
bin: {
|
package/dist/ui/web/index.html
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<meta name="color-scheme" content="dark" />
|
|
7
7
|
<meta name="theme-color" content="#11100e" />
|
|
8
8
|
<title>AgentZ</title>
|
|
9
|
-
<link rel="icon" href="
|
|
9
|
+
<link rel="icon" href="./logo.png" />
|
|
10
10
|
<link rel="stylesheet" href="./styles.css" />
|
|
11
11
|
</head>
|
|
12
12
|
<body>
|