RING library for building UCS theme with modules
npm install ring-ucs-theme-builderjs
var themebuilder = require('ring-ucs-theme-builder');
themebuilder.download('/theme/path', '/modules/destination/path', function (err, modules) {
console.log(err, modules);
});
themebuilder.build('/theme/path', '/modules/path', '/theme/merged/destination/path', function (err, modules) {
console.log(err, modules);
});
``