You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
510 B
20 lines
510 B
module.exports = {
|
|
src: {
|
|
root: './src/UI/',
|
|
templates: './src/UI/**/*.hbs',
|
|
html: './src/UI/*.html',
|
|
partials: './src/UI/**/*Partial.hbs',
|
|
scripts: './src/UI/**/*.js',
|
|
less: ['./src/UI/**/*.less'],
|
|
content: './src/UI/Content/',
|
|
images: './src/UI/Content/Images/**/*',
|
|
exclude :{
|
|
libs:'!./src/UI/JsLibraries/**'
|
|
}
|
|
},
|
|
dest: {
|
|
root: './_output/UI/',
|
|
content: './_output/UI/Content/'
|
|
}
|
|
};
|