Skip to content

Commit

Permalink
build: use commit hash when release branch arg passed (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rico040 authored Jun 25, 2024
1 parent bf21e98 commit 4469339
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/build.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// @ts-nocheck
/* eslint-disable no-restricted-syntax */
import swc from "@swc/core";
import { execSync } from "child_process";
import crypto from "crypto";
import { build } from "esbuild";
import { readFile, writeFile } from "fs/promises";
Expand Down Expand Up @@ -116,7 +117,7 @@ const config = {

export async function buildBundle() {
context = {
hash: crypto.randomBytes(8).toString("hex").slice(0, 7)
hash: releaseBranch ? execSync("git rev-parse --short HEAD").toString().trim() : crypto.randomBytes(8).toString("hex").slice(0, 7)
};

const initialStartTime = performance.now();
Expand Down

0 comments on commit 4469339

Please sign in to comment.