mirror of
https://github.com/imputnet/cobalt.git
synced 2025-01-27 00:41:45 +00:00
4d369170ff
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);
|