mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-04-09 16:47:37 +03:00
8 lines
226 B
TypeScript
8 lines
226 B
TypeScript
|
|
import { execSync } from "child_process";
|
||
|
|
import path from "path";
|
||
|
|
|
||
|
|
export default function globalSetup() {
|
||
|
|
const webDir = path.resolve(__dirname, "..");
|
||
|
|
execSync("npm run e2e:build", { cwd: webDir, stdio: "inherit" });
|
||
|
|
}
|