mirror of
https://github.com/gradio-app/gradio.git
synced 2024-11-27 01:40:20 +08:00
52f7831751
* refactor: Use package.json for version management - uses package.json file for version management. - updated the regex pattern. - removed the logic that creates or updates the version.txt file * load version through package.json * fix code duplication * add changeset * add changeset * fixes * fix * package version * fix * typing * typing * changes * add changeset --------- Co-authored-by: Abubakar Abid <abubakar@huggingface.co> Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
92 lines
2.1 KiB
TypeScript
92 lines
2.1 KiB
TypeScript
import { defineConfig } from "vite";
|
|
import { svelte } from "@sveltejs/vite-plugin-svelte";
|
|
import sveltePreprocess from "svelte-preprocess";
|
|
// @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 { join } from "path";
|
|
import { fileURLToPath } from "url";
|
|
|
|
const __dirname = fileURLToPath(new URL(".", import.meta.url));
|
|
const version_path = join(__dirname, "..", "gradio", "package.json");
|
|
const theme_token_path = join(
|
|
__dirname,
|
|
"..",
|
|
"js",
|
|
"theme",
|
|
"src",
|
|
"tokens.css"
|
|
);
|
|
|
|
const version = JSON.parse(readFileSync(version_path, { encoding: 'utf-8' })).version.trim().replace(/\./g, '-');
|
|
|
|
//@ts-ignore
|
|
export default defineConfig(({ mode }) => {
|
|
const production =
|
|
mode === "production:cdn" ||
|
|
mode === "production:local" ||
|
|
mode === "production:website";
|
|
|
|
return {
|
|
server: {
|
|
port: 9876
|
|
},
|
|
|
|
build: {
|
|
sourcemap: false,
|
|
target: "esnext",
|
|
minify: production
|
|
},
|
|
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 ||
|
|
fileName.indexOf(".svelte") > -1
|
|
) {
|
|
return selector;
|
|
}
|
|
return prefixedSelector;
|
|
}
|
|
}),
|
|
custom_media()
|
|
]
|
|
}
|
|
},
|
|
plugins: [
|
|
svelte({
|
|
inspector: true,
|
|
compilerOptions: {
|
|
dev: !production
|
|
},
|
|
hot: !process.env.VITEST && !production,
|
|
preprocess: sveltePreprocess({
|
|
postcss: {
|
|
plugins: [
|
|
global_data({ files: [theme_token_path] }),
|
|
custom_media()
|
|
]
|
|
}
|
|
})
|
|
})
|
|
]
|
|
};
|
|
});
|