13 lines
		
	
	
	
		
			512 B
			
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			512 B
			
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| // 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 copyPacks } from './copy-language-packs';
 | |
| import { afterPack as pruneMacOSRelease } from './prune-macos-release';
 | |
| 
 | |
| export async function afterPack(context: AfterPackContext): Promise<void> {
 | |
|   await pruneMacOSRelease(context);
 | |
|   await fuseElectron(context);
 | |
|   await copyPacks(context);
 | |
| }
 | 
