diff options
Diffstat (limited to 'Gruntfile.js')
-rw-r--r-- | Gruntfile.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index c0ab169..cdb853b 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -35,7 +35,8 @@ module.exports = function (grunt) { "lodash": 'vendors/lodash', "requireLib": 'vendors/require', "Mousetrap": 'vendors/mousetrap', - "mixpanel": 'vendors/mixpanel' + "mixpanel": 'vendors/mixpanel', + "lunr": path.join(__dirname, "node_modules/lunr/lunr") }, shim: { 'jQuery': { @@ -49,6 +50,9 @@ module.exports = function (grunt) { }, 'mixpanel': { exports: 'mixpanel' + }, + 'lunr': { + exports: 'lunr' } } } |