mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-04 21:04:37 +08:00
Some checks failed
all-good: Did all the other checks pass? / all-good (push) Has been cancelled
Ensure Prisma migrations are in sync with the schema / check_prisma_migrations (22.x) (push) Has been cancelled
DB migration compat / Check if migrations changed (push) Has been cancelled
Docker Server Build and Push / Docker Build and Push Server (push) Has been cancelled
Docker Server Build and Run / docker (push) Has been cancelled
Runs E2E API Tests (Local Emulator) / E2E Tests (Local Emulator, Node ${{ matrix.node-version }}) (22.x) (push) Has been cancelled
Runs E2E API Tests / E2E Tests (Node ${{ matrix.node-version }}, Freestyle ${{ matrix.freestyle-mode }}) (mock, 22.x) (push) Has been cancelled
Runs E2E API Tests / E2E Tests (Node ${{ matrix.node-version }}, Freestyle ${{ matrix.freestyle-mode }}) (prod, 22.x) (push) Has been cancelled
Runs E2E API Tests with custom port prefix / build (22.x) (push) Has been cancelled
Runs E2E Fallback Tests / E2E Fallback Tests (Node ${{ matrix.node-version }}) (22.x) (push) Has been cancelled
Lint & build / lint_and_build (24) (push) Has been cancelled
TOC Generator / TOC Generator (push) Has been cancelled
DB migration compat / Back-compat — Current branch migrations with ${{ needs.check-migrations-changed.outputs.base_branch }} branch code (push) Has been cancelled
DB migration compat / Forward-compat — Current branch code with ${{ needs.check-migrations-changed.outputs.base_branch }} branch migrations (push) Has been cancelled
DB migration compat / No migration changes (skipped) (push) Has been cancelled
95 lines
2.8 KiB
TypeScript
95 lines
2.8 KiB
TypeScript
import fs from "node:fs";
|
|
import path from "node:path";
|
|
import { fileURLToPath } from "node:url";
|
|
import { tanstackStart } from "@tanstack/react-start/plugin/vite";
|
|
import viteReact from "@vitejs/plugin-react";
|
|
import { defineConfig, type Plugin } from "vite";
|
|
import { nitro } from "nitro/vite";
|
|
import tsConfigPaths from "vite-tsconfig-paths";
|
|
|
|
const stackAuthRootPath = fileURLToPath(new URL("../..", import.meta.url));
|
|
|
|
function watchNodeModules(modules: string[]): Plugin {
|
|
return {
|
|
name: "watch-node-modules",
|
|
config() {
|
|
return {
|
|
server: {
|
|
watch: {
|
|
ignored: modules.map((moduleName) => `!**/node_modules/${moduleName}/**`),
|
|
},
|
|
},
|
|
};
|
|
},
|
|
};
|
|
}
|
|
|
|
function waitForWorkspacePackages(packages: string[]): Plugin {
|
|
const packageDistEntries = packages.map((pkg) => ({
|
|
name: pkg,
|
|
entry: path.resolve(__dirname, "node_modules", pkg, "dist", "esm", "index.js"),
|
|
}));
|
|
|
|
async function waitForFile(filePath: string, timeoutMs = 60_000): Promise<void> {
|
|
if (fs.existsSync(filePath)) return;
|
|
const start = performance.now();
|
|
return await new Promise((resolve, reject) => {
|
|
const interval = setInterval(() => {
|
|
if (fs.existsSync(filePath)) {
|
|
clearInterval(interval);
|
|
resolve();
|
|
} else if (performance.now() - start > timeoutMs) {
|
|
clearInterval(interval);
|
|
reject(new Error(`Timed out waiting for ${filePath} to exist`));
|
|
}
|
|
}, 500);
|
|
});
|
|
}
|
|
|
|
return {
|
|
name: "wait-for-workspace-packages",
|
|
enforce: "pre",
|
|
async buildStart() {
|
|
const missing = packageDistEntries.filter((pkg) => !fs.existsSync(pkg.entry));
|
|
if (missing.length === 0) return;
|
|
console.log(`Waiting for workspace packages to build: ${missing.map((pkg) => pkg.name).join(", ")}`);
|
|
await Promise.all(missing.map((pkg) => waitForFile(pkg.entry)));
|
|
console.log("All workspace packages are ready.");
|
|
},
|
|
};
|
|
}
|
|
|
|
export default defineConfig(({ mode }) => {
|
|
const isVitest = mode === "test" || process.env.VITEST === "true";
|
|
|
|
return {
|
|
server: {
|
|
port: Number(`${process.env.NEXT_PUBLIC_HEXCLAVE_PORT_PREFIX || "81"}43`),
|
|
fs: {
|
|
allow: [stackAuthRootPath],
|
|
},
|
|
},
|
|
resolve: {
|
|
dedupe: ["react", "react-dom"],
|
|
},
|
|
ssr: {
|
|
noExternal: [/^@hexclave\//, /^@radix-ui\//],
|
|
},
|
|
optimizeDeps: {
|
|
include: ["@hexclave/shared", "@hexclave/shared/config"],
|
|
},
|
|
plugins: [
|
|
...(isVitest ? [] : [
|
|
waitForWorkspacePackages(["@hexclave/tanstack-start", "@hexclave/shared", "@hexclave/ui"]),
|
|
watchNodeModules(["@hexclave/tanstack-start", "@hexclave/shared", "@hexclave/ui"]),
|
|
]),
|
|
tsConfigPaths(),
|
|
...(isVitest ? [] : [
|
|
tanstackStart(),
|
|
nitro(),
|
|
]),
|
|
viteReact(),
|
|
],
|
|
};
|
|
});
|