firmament-vita
Version:
Firmament module for automating VITA tasks
12 lines (10 loc) • 440 B
text/typescript
export * from './interfaces/postal-agent';
export * from './interfaces/vita-tasks';
export * from './interfaces/vita-options-results';
import kernel from "./inversify.config";
export {kernel};
//HACK so tools can get version to sync the firmament ecosystem
if(process.argv[2] && process.argv[2].toString() === '--version'){
let package_json = require('../package.json');
console.log(`${package_json.name}: ${package_json.version}`);
}