Fixed ngmin build issue introduced in route refactoring, Fixes #622

This commit is contained in:
Torkel Ödegaard 2014-07-29 08:13:23 +02:00
parent 77bfd85e9e
commit 77e5e75b2f
2 changed files with 11 additions and 2 deletions

View File

@ -8,5 +8,13 @@ module.exports = function(config) {
keepalive: true
}
},
dist: {
options: {
port: 5605,
hostname: '*',
base: config.destDir,
keepalive: true
}
},
}
};
};

View File

@ -9,6 +9,7 @@ module.exports = function(config) {
'app/services/**/*.js',
'app/filters/**/*.js',
'app/panels/**/*.js',
'app/routes/**/*.js',
'app/app.js',
'vendor/angular/**/*.js',
'vendor/elasticjs/elastic-angular-client.js'
@ -16,4 +17,4 @@ module.exports = function(config) {
dest: '<%= tempDir %>'
}
};
};
};