@synaptic-simulations/mach
Version:
The last MSFS instrument bundler you'll ever need.
15 lines (14 loc) • 525 B
TypeScript
import type { Plugin } from "esbuild";
import type { Instrument, MachArgs } from "./types";
/**
* Replace references to `process.env.*` with their value from the current environment.
*/
export declare const environment: Plugin;
/**
* Write `build_meta.json` files containing build data into the bundle directory.
*/
export declare const writeMetafile: Plugin;
/**
* Export simulator packages to `PackageSources` directory
*/
export declare const writePackageSources: (args: MachArgs, instrument: Instrument) => Plugin;