1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/frontend/gulp/helpers/paths.js

24 lines
487 B
JavaScript
Raw Normal View History

2018-01-13 04:01:27 +02:00
const root = './frontend/src/';
const paths = {
src: {
root,
html: `${root}*.html`,
scripts: `${root}**/*.js`,
content: `${root}Content/`,
fonts: `${root}Content/Fonts/`,
images: `${root}Content/Images/`,
2018-01-13 04:01:27 +02:00
exclude: {
libs: `!${root}JsLibraries/**`
}
},
dest: {
2017-02-24 02:56:47 +02:00
root: './_output/UI/',
content: './_output/UI/Content/',
fonts: './_output/UI/Content/Fonts/',
images: './_output/UI/Content/Images/'
2018-01-13 04:01:27 +02:00
}
};
module.exports = paths;