universal-web-template
Version:
An universal web proejct template - let you quickly set up a project using Handlebars, sass and ReactJS for front-end templating. It can be adopted with most modern CMS.
21 lines (15 loc) • 334 B
JavaScript
/* jshint node: true */
/*
Vendor - bootstrap datepicker
*/
;
module.exports = function(moduleDir) {
return {
plugins: [
moduleDir + '/bootstrap-datepicker/dist/js/bootstrap-datepicker.min.js'
],
styles:[
moduleDir + '/bootstrap-datepicker/dist/css/bootstrap-datepicker.css'
]
};
};