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) { ...@@ -102,7 +102,7 @@ module.exports = function(grunt) {
102 } 102 }
103 } 103 }
104 url = parts.join('/'); 104 url = parts.join('/');
105 if (0) if (url.match(/^src\/scripts\/(.*?\/)?[^\/]+\.spec\.js$/)) { 105 if (1) if (url.match(/^src\/scripts\/(.*?\/)?[^\/]+\.spec\.js$/)) {
106 url = './.grunt/grunt-contrib-jasmine/' + url; 106 url = './.grunt/grunt-contrib-jasmine/' + url;
107 } else if (url.match(/^src\/scripts\/(.*?\/)?[^\/]+\.js$/)) { 107 } else if (url.match(/^src\/scripts\/(.*?\/)?[^\/]+\.js$/)) {
108 url = './.grunt/grunt-contrib-jasmine/' + url; 108 url = './.grunt/grunt-contrib-jasmine/' + url;
...@@ -129,8 +129,8 @@ module.exports = function(grunt) { ...@@ -129,8 +129,8 @@ module.exports = function(grunt) {
129 }; 129 };
130 130
131 templateOptions = { 131 templateOptions = {
132 coverage: 'bin/coverage/coverage.json', 132 coverage: 'dist/coverage/coverage.json',
133 report: 'bin/coverage', 133 report: 'dist/coverage',
134 replace: false, 134 replace: false,
135 template: foo, 135 template: foo,
136 templateOptions: templateOptions, 136 templateOptions: templateOptions,
......