1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-07-13 01:20:22 +02:00

removed legacy UI components

This commit is contained in:
Keivan Beigi
2017-02-23 16:56:47 -08:00
committed by Taloth Saldono
parent ab12c51e0f
commit 50d4d7a19d
16 changed files with 8 additions and 332 deletions

View File

@ -3,11 +3,8 @@ const root = './frontend/src/';
const paths = {
src: {
root,
templates: root + '**/*.hbs',
html: root + '*.html',
partials: root + '**/*Partial.hbs',
scripts: root + '**/*.js',
less: [root + '**/*.less'],
content: root + 'Content/',
fonts: root + 'Content/Fonts/',
images: root + 'Content/Images/',
@ -16,10 +13,10 @@ const paths = {
}
},
dest: {
root: './_output/UI.Phantom/',
content: './_output/UI.Phantom/Content/',
fonts: './_output/UI.Phantom/Content/Fonts/',
images: './_output/UI.Phantom/Content/Images/'
root: './_output/UI/',
content: './_output/UI/Content/',
fonts: './_output/UI/Content/Fonts/',
images: './_output/UI/Content/Images/'
}
};