UNPKG

371 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.update = void 0;
4const plugins_1 = require("../plugins");
5const update = async function () {
6 const plugins = new plugins_1.default(this.config);
7 try {
8 await plugins.update();
9 }
10 catch (error) {
11 this.error(error.message);
12 }
13};
14exports.update = update;