mirror of
https://github.com/wukko/cobalt.git
synced 2025-05-20 15:17:07 +02:00

wip: - separate web and api servers. - script for building static pages. - building improvements. - async localisation preloading.
8 lines
222 B
JavaScript
8 lines
222 B
JavaScript
import { buildFront } from "./build.js";
|
|
import { getCurrentBranch, shortCommit } from "./sub/currentCommit.js";
|
|
|
|
const commitHash = shortCommit();
|
|
const branch = getCurrentBranch();
|
|
|
|
await buildFront(commitHash, branch);
|