56db38ec by Adam Heath

Move most of the solr data parsing/building from Facets into Facet.

1 parent d91e8f81
......@@ -102,7 +102,7 @@ module.exports = function(grunt) {
}
}
url = parts.join('/');
if (0) if (url.match(/^src\/scripts\/(.*?\/)?[^\/]+\.spec\.js$/)) {
if (1) if (url.match(/^src\/scripts\/(.*?\/)?[^\/]+\.spec\.js$/)) {
url = './.grunt/grunt-contrib-jasmine/' + url;
} else if (url.match(/^src\/scripts\/(.*?\/)?[^\/]+\.js$/)) {
url = './.grunt/grunt-contrib-jasmine/' + url;
......@@ -129,8 +129,8 @@ module.exports = function(grunt) {
};
templateOptions = {
coverage: 'bin/coverage/coverage.json',
report: 'bin/coverage',
coverage: 'dist/coverage/coverage.json',
report: 'dist/coverage',
replace: false,
template: foo,
templateOptions: templateOptions,
......