1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-05 15:15:59 +02:00
Sonarr/gulp/paths.js

20 lines
510 B
JavaScript
Raw Normal View History

2014-08-28 14:40:18 -07:00
module.exports = {
src: {
root: './src/UI/',
templates: './src/UI/**/*.hbs',
2015-01-25 18:03:21 -08:00
html: './src/UI/*.html',
2014-08-28 14:40:18 -07:00
partials: './src/UI/**/*Partial.hbs',
scripts: './src/UI/**/*.js',
less: ['./src/UI/**/*.less'],
content: './src/UI/Content/',
2014-08-29 22:59:08 -07:00
images: './src/UI/Content/Images/**/*',
2014-08-28 14:40:18 -07:00
exclude :{
libs:'!./src/UI/JsLibraries/**'
}
},
dest: {
root: './_output/UI/',
content: './_output/UI/Content/'
}
2015-01-29 18:10:16 -08:00
};