Sonarr/frontend/gulp/helpers/paths.js

24 lines
492 B
JavaScript
Raw Normal View History

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