Files
ThreadNet-Web/apps/desktop/hak/matrix-seshat/build.ts
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
1019 B
TypeScript
Raw Normal View History

/*
2024-09-06 17:56:18 +01:00
Copyright 2024 New Vector Ltd.
Copyright 2020, 2021 The Matrix.org Foundation C.I.C.
2025-01-17 11:44:49 +00:00
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
2024-09-06 17:56:18 +01:00
Please see LICENSE files in the repository root for full details.
*/
2026-03-30 17:17:36 +02:00
import type HakEnv from "../../scripts/hak/hakEnv.ts";
import type { DependencyInfo } from "../../scripts/hak/dep.ts";
2021-12-14 14:32:27 +00:00
2022-12-15 11:00:58 +00:00
export default async function (hakEnv: HakEnv, moduleInfo: DependencyInfo): Promise<void> {
2020-02-17 20:10:58 +00:00
const env = hakEnv.makeGypEnv();
if (!hakEnv.isHost()) {
env.CARGO_BUILD_TARGET = hakEnv.getTargetId();
}
2023-04-24 14:19:10 +02:00
console.log("Running yarn install");
2024-10-30 18:06:03 +00:00
await hakEnv.spawn("yarn", ["install"], {
cwd: moduleInfo.moduleBuildDir,
env,
shell: true,
2023-04-24 14:19:10 +02:00
});
const buildTarget = hakEnv.wantsStaticSqlCipher() ? "build-bundled" : "build";
console.log("Running yarn build");
2024-10-30 18:06:03 +00:00
await hakEnv.spawn("yarn", ["run", buildTarget], {
cwd: moduleInfo.moduleBuildDir,
env,
shell: true,
});
}