Update project structure

This commit is contained in:
gconsidine
2017-05-10 17:42:52 -04:00
parent 5553a6bcda
commit 725fd15519
82 changed files with 134 additions and 1078 deletions

View File

@@ -32,7 +32,7 @@ module.exports = {
},
views: {
files: [{
cwd: 'client/src',
cwd: 'client/features',
expand: true,
src: ['**/*.view.html'],
dest: 'static/views/'
@@ -50,7 +50,7 @@ module.exports = {
src: ['*.html'],
dest: 'static/partials/'
}, {
cwd: 'client/components',
cwd: 'client/lib/components',
expand: true,
src: ['**/*.partial.html'],
dest: 'static/partials/components/'

View File

@@ -10,7 +10,7 @@ module.exports = {
src: [
'client/legacy-styles/*.less',
'client/src/**/*.less',
'client/theme/index.less'
'client/lib/theme/index.less'
]
}],
options: {
@@ -22,7 +22,7 @@ module.exports = {
'static/tower.min.css': [
'client/legacy-styles/*.less',
'client/src/**/*.less',
'client/theme/index.less'
'client/lib/theme/index.less'
]
},
options: {

View File

@@ -5,13 +5,13 @@ module.exports = {
},
partials: {
files: [
'client/components/**/*.partial.html',
'client/lib/components/**/*.partial.html',
'client/src/**/*.partial.html'
],
tasks: ['newer:copy:partials']
},
views: {
files: 'client/src/**/*.view.html',
files: 'client/features/**/*.view.html',
tasks: ['newer:copy:views']
},
assets: {