@keymanapp/kmc
Version:
Keyman Developer compiler command line tools
13 lines • 652 B
JavaScript
import { BuildActivity } from './BuildActivity.js';
import { KmpCompiler } from '@keymanapp/kmc-package';
export class BuildPackage extends BuildActivity {
get name() { return 'Package'; }
get sourceExtension() { return ".kps" /* KeymanFileTypes.Source.Package */; }
get compiledExtension() { return ".kmp" /* KeymanFileTypes.Binary.Package */; }
get description() { return 'Build a Keyman package'; }
async build(infile, outfile, callbacks, options) {
const compiler = new KmpCompiler();
return await super.runCompiler(compiler, infile, outfile, callbacks, options);
}
}
//# sourceMappingURL=BuildPackage.js.map