mirror of
https://github.com/wukko/cobalt.git
synced 2025-02-13 14:16:25 +01:00
wip: - separate web and api servers. - script for building static pages. - building improvements. - async localisation preloading.
7 lines
222 B
JavaScript
7 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);
|