Refactor all Less to manage import order itself

This commit is contained in:
gconsidine
2017-07-20 17:28:51 -04:00
parent 6335953376
commit 86fb6116a0
94 changed files with 307 additions and 243 deletions

View File

@@ -30,7 +30,13 @@ module.exports = function(grunt) {
'clean:tmp',
'clean:static',
'concurrent:dev',
'sync',
'copy:icons',
'copy:fonts',
'concat:css',
'cssmin:vendor',
'less:dev',
'cssmin:source',
'sync'
]);
grunt.registerTask('devNoSync', [
@@ -45,5 +51,4 @@ module.exports = function(grunt) {
'webpack:prod',
'concurrent:prod',
]);
};