element-desktop/scripts/hak/build.ts

15 lines
451 B
TypeScript
Raw Normal View History

/*
2024-09-06 18:56:18 +02:00
Copyright 2024 New Vector Ltd.
Copyright 2020 The Matrix.org Foundation C.I.C.
2024-09-06 18:56:18 +02:00
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details.
*/
import type { DependencyInfo } from "./dep.js";
import type HakEnv from "./hakEnv.js";
export default async function build(hakEnv: HakEnv, moduleInfo: DependencyInfo): Promise<void> {
2020-02-17 21:10:58 +01:00
await moduleInfo.scripts.build(hakEnv, moduleInfo);
2020-02-17 15:49:26 +01:00
}