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.
22 lines (16 loc) • 325 B
JavaScript
/* jshint node: true */
/*
Vendor - basic plugins
*/
;
module.exports = function(moduleDir) {
return {
plugins: [
moduleDir + "/babel-polyfill/dist/polyfill.js",
moduleDir + '/html5shiv/dist/html5shiv.js'
],
styles:[
moduleDir + '/normalize.css/normalize.css'
]
};
};