UNPKG

@webda/shell

Version:

Deploy a Webda app or configure it

14 lines 418 B
import { Deployer } from "./deployer.js"; /** * @WebdaDeployer WebdaDeployer/ShellDeployer */ export default class ShellDeployer extends Deployer { async deploy() { this.resources.scripts = this.resources.scripts || []; for (let i in this.resources.scripts) { await this.execute(this.resources.scripts[i]); } } } export { ShellDeployer }; //# sourceMappingURL=shell.js.map