@decaf-ts/utils
Version:
module management utils for decaf-ts
10 lines • 331 B
JavaScript
/* istanbul ignore file */
import { CompileMatrixCommand } from "./../cli/commands/index.js";
new CompileMatrixCommand()
.execute()
.then(() => process.exit(0))
.catch((error) => {
CompileMatrixCommand.log.error(`Failed to compile matrix`, error);
process.exit(1);
});
//# sourceMappingURL=compile-matrix.js.map