2024-08-14 22:17:36 +08:00
|
|
|
import { defineConfig } from "vite";
|
2024-10-22 22:43:38 +08:00
|
|
|
import { svelte, vitePreprocess } from "@sveltejs/vite-plugin-svelte";
|
|
|
|
import { sveltePreprocess } from "svelte-preprocess";
|
2024-08-14 22:17:36 +08:00
|
|
|
// @ts-ignore
|
|
|
|
import custom_media from "postcss-custom-media";
|
|
|
|
import global_data from "@csstools/postcss-global-data";
|
|
|
|
// @ts-ignore
|
|
|
|
import prefixer from "postcss-prefix-selector";
|
|
|
|
import { readFileSync } from "fs";
|
|
|
|
import { resolve } from "path";
|
|
|
|
|
|
|
|
const version_path = resolve(__dirname, "../../gradio/package.json");
|
|
|
|
const theme_token_path = resolve(__dirname, "../theme/src/tokens.css");
|
|
|
|
const version_raw = JSON.parse(
|
|
|
|
readFileSync(version_path, { encoding: "utf-8" })
|
|
|
|
).version.trim();
|
|
|
|
const version = version_raw.replace(/\./g, "-");
|
|
|
|
|
|
|
|
function convert_to_pypi_prerelease(version: string) {
|
|
|
|
return version.replace(
|
|
|
|
/(\d+\.\d+\.\d+)-([-a-z]+)\.(\d+)/,
|
|
|
|
(match, v, tag, tag_version) => {
|
|
|
|
if (tag === "beta") {
|
|
|
|
return `${v}b${tag_version}`;
|
|
|
|
} else if (tag === "alpha") {
|
|
|
|
return `${v}a${tag_version}`;
|
|
|
|
} else {
|
|
|
|
return version;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
const python_version = convert_to_pypi_prerelease(version_raw);
|
|
|
|
|
|
|
|
const client_version_path = resolve(
|
|
|
|
__dirname,
|
|
|
|
"../../client/python/gradio_client/package.json"
|
|
|
|
);
|
|
|
|
const client_version_raw = JSON.parse(
|
|
|
|
readFileSync(client_version_path, {
|
|
|
|
encoding: "utf-8"
|
|
|
|
})
|
|
|
|
).version.trim();
|
|
|
|
|
|
|
|
const client_python_version = convert_to_pypi_prerelease(client_version_raw);
|
|
|
|
|
|
|
|
import {
|
|
|
|
inject_ejs,
|
|
|
|
generate_cdn_entry,
|
|
|
|
generate_dev_entry,
|
|
|
|
handle_ce_css,
|
|
|
|
inject_component_loader,
|
|
|
|
resolve_svelte,
|
|
|
|
mock_modules
|
2024-08-23 00:38:45 +08:00
|
|
|
} from "@self/build";
|
2024-08-14 22:17:36 +08:00
|
|
|
|
|
|
|
const GRADIO_VERSION = version_raw || "asd_stub_asd";
|
|
|
|
const CDN_BASE = "https://gradio.s3-us-west-2.amazonaws.com";
|
|
|
|
const TEST_MODE = process.env.TEST_MODE || "happy-dom";
|
|
|
|
|
|
|
|
//@ts-ignore
|
|
|
|
export default defineConfig(({ mode }) => {
|
|
|
|
const production = mode === "production";
|
|
|
|
const development = mode === "development";
|
|
|
|
|
|
|
|
return {
|
|
|
|
base: "./",
|
|
|
|
server: {
|
|
|
|
port: 9876,
|
|
|
|
open: "/"
|
|
|
|
},
|
|
|
|
build: {
|
|
|
|
sourcemap: true,
|
|
|
|
target: "esnext",
|
|
|
|
minify: production,
|
|
|
|
outDir: "../../gradio/templates/frontend",
|
|
|
|
rollupOptions: {
|
|
|
|
external: ["./svelte/svelte.js"],
|
|
|
|
makeAbsoluteExternalsRelative: false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
define: {
|
|
|
|
BUILD_MODE: production ? JSON.stringify("prod") : JSON.stringify("dev"),
|
|
|
|
BACKEND_URL: production
|
|
|
|
? JSON.stringify("")
|
|
|
|
: JSON.stringify("http://localhost:7860/"),
|
|
|
|
GRADIO_VERSION: JSON.stringify(version)
|
|
|
|
},
|
|
|
|
css: {
|
|
|
|
postcss: {
|
|
|
|
plugins: [
|
|
|
|
prefixer({
|
|
|
|
prefix: `.gradio-container-${version}`,
|
|
|
|
// @ts-ignore
|
|
|
|
transform(prefix, selector, prefixedSelector, fileName) {
|
|
|
|
if (selector.indexOf("gradio-container") > -1) {
|
|
|
|
return prefix;
|
|
|
|
} else if (
|
|
|
|
selector.indexOf(":root") > -1 ||
|
|
|
|
selector.indexOf("dark") > -1 ||
|
|
|
|
selector.indexOf("body") > -1 ||
|
|
|
|
fileName.indexOf(".svelte") > -1
|
|
|
|
) {
|
|
|
|
return selector;
|
|
|
|
}
|
|
|
|
return prefixedSelector;
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
custom_media()
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
resolve_svelte(development),
|
|
|
|
svelte({
|
|
|
|
inspector: false,
|
|
|
|
compilerOptions: {
|
|
|
|
dev: true,
|
|
|
|
discloseVersion: false,
|
|
|
|
accessors: true
|
|
|
|
},
|
|
|
|
hot: !process.env.VITEST && !production,
|
2024-10-22 22:43:38 +08:00
|
|
|
preprocess: [
|
|
|
|
vitePreprocess(),
|
|
|
|
sveltePreprocess({
|
|
|
|
postcss: {
|
|
|
|
plugins: [
|
|
|
|
global_data({ files: [theme_token_path] }),
|
|
|
|
custom_media()
|
|
|
|
]
|
|
|
|
}
|
|
|
|
})
|
|
|
|
]
|
2024-08-14 22:17:36 +08:00
|
|
|
}),
|
|
|
|
generate_dev_entry({
|
|
|
|
enable: !development && mode !== "test"
|
|
|
|
}),
|
|
|
|
inject_ejs(),
|
|
|
|
generate_cdn_entry({ version: GRADIO_VERSION, cdn_base: CDN_BASE }),
|
|
|
|
handle_ce_css(),
|
|
|
|
inject_component_loader({ mode }),
|
|
|
|
mode === "test" && mock_modules()
|
|
|
|
],
|
|
|
|
optimizeDeps: {
|
|
|
|
exclude: ["@ffmpeg/ffmpeg", "@ffmpeg/util"]
|
|
|
|
},
|
2024-08-23 00:38:45 +08:00
|
|
|
resolve: {
|
|
|
|
conditions: ["gradio"]
|
|
|
|
},
|
2024-08-14 22:17:36 +08:00
|
|
|
test: {
|
|
|
|
setupFiles: [resolve(__dirname, "../../.config/setup_vite_tests.ts")],
|
|
|
|
environment: TEST_MODE,
|
|
|
|
include:
|
|
|
|
TEST_MODE === "node"
|
|
|
|
? ["**/*.node-test.{js,mjs,cjs,ts,mts,cts,jsx,tsx}"]
|
|
|
|
: ["**/*.test.{js,mjs,cjs,ts,mts,cts,jsx,tsx}"],
|
|
|
|
exclude: ["**/node_modules/**", "**/gradio/gradio/**"],
|
|
|
|
globals: true,
|
|
|
|
onConsoleLog(log, type) {
|
|
|
|
if (log.includes("was created with unknown prop")) return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
});
|