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