UNPKG

ask-cli-x

Version:

Alexa Skills Kit (ASK) Command Line Interfaces

15 lines (14 loc) 304 B
"use strict"; const nodemon = require("nodemon"); class AbstractRunFlow { constructor(execConfig) { this.execConfig = execConfig; } execCommand() { nodemon(this.execConfig); } getExecConfig() { return this.execConfig; } } module.exports = AbstractRunFlow;