signal-desktop/ts/scripts/after-pack.ts

12 lines
404 B
TypeScript
Raw Normal View History

2021-12-17 17:50:42 +00:00
// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import type { AfterPackContext } from 'electron-builder';
import { afterPack as fuseElectron } from './fuse-electron';
import { afterPack as mergeASARs } from './merge-macos-asars';
export async function afterPack(context: AfterPackContext): Promise<void> {
await mergeASARs(context);
await fuseElectron(context);
}