fresh-themes/index.js

20 lines
468 B
JavaScript
Raw Permalink Normal View History

2018-02-01 14:28:13 +00:00
/**
Mount individual themes onto the module object for convenience.
@module index.js
@license MIT. See LICENSE.md for details.
*/
(function(){
module.exports = {
themes: {
awesome: require('./themes/awesome/theme.json'),
basis: require('./themes/basis/theme.json'),
compact: require('./themes/compact/theme.json'),
modern: require('./themes/modern/theme.json'),
2018-02-06 09:49:34 +00:00
positive: require('./themes/positive/theme.json')
2018-02-01 14:28:13 +00:00
}
};
}());