@terra-money/houston
Version:
Core module for Houston smart contract framework
15 lines (14 loc) • 492 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
const commander = require("commander");
const program = new commander.Command();
const houston_migrate_1 = tslib_1.__importDefault(require("@terra-money/houston-migrate"));
program
.command("migrate [name]")
.name("migrate")
.usage("[name]")
.description("run migration scripts")
.action(houston_migrate_1.default)
.parse(process.argv);