@zohodesk/client_build_tool
Version:
A CLI tool to build web applications and client libraries
20 lines (15 loc) • 468 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.configCustomAttributesPlugin = configCustomAttributesPlugin;
var _custom_attribute_plugin = require("../custom_plugins/custom_attribute_plugin");
function configCustomAttributesPlugin(options) {
const {
customAttributes
} = options;
if (customAttributes.enable) {
return new _custom_attribute_plugin.CustomAttributesPlugin(customAttributes);
}
return null;
}