cobalt/src/modules/buildStatic.js

8 lines
222 B
JavaScript
Raw Normal View History

import { buildFront } from "./build.js";
import { getCurrentBranch, shortCommit } from "./sub/currentCommit.js";
const commitHash = shortCommit();
const branch = getCurrentBranch();
await buildFront(commitHash, branch);