1.3.2 • Published 5 years ago

ring-ucs-theme-builder v1.3.2

Weekly downloads
36
License
ISC
Repository
-
Last release
5 years ago

Ucs Theme Builder

RING Library used to build UCS themes from modules

Example usage

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);
});