GSI - Employe Self Service Mobile
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

20 lines
826 B

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.command = void 0;
const clc = require("colorette");
const command_1 = require("../command");
const requireConfig_1 = require("../requireConfig");
const utils = require("../utils");
exports.command = new command_1.Command("target:remove <type> <resource>")
.description("remove a resource target")
.before(requireConfig_1.requireConfig)
.action((type, resource, options) => {
const name = options.rc.removeTarget(options.project, type, resource);
if (name) {
utils.logSuccess(`Removed ${type} target ${clc.bold(name)} from ${clc.bold(resource)}`);
}
else {
utils.logWarning(`No action taken. No target found for ${type} resource ${clc.bold(resource)}`);
}
return Promise.resolve(name);
});