diff options
author | Thomas Citharel <tcit@tcit.fr> | 2016-09-28 18:59:15 +0200 |
---|---|---|
committer | Thomas Citharel <tcit@tcit.fr> | 2016-09-28 18:59:15 +0200 |
commit | 8f234d0156cc6f2eb6e3c9f692e4633b35fafc41 (patch) | |
tree | e609ce4e55729c63b1380fc4652dadb4343455af /Gruntfile.js | |
parent | fc487c4eb1924caae1056356963df91e06811b4a (diff) | |
download | wallabag-8f234d0156cc6f2eb6e3c9f692e4633b35fafc41.tar.gz wallabag-8f234d0156cc6f2eb6e3c9f692e4633b35fafc41.tar.zst wallabag-8f234d0156cc6f2eb6e3c9f692e4633b35fafc41.zip |
remove autocomplete and bring fonts through npm
Diffstat (limited to 'Gruntfile.js')
-rw-r--r-- | Gruntfile.js | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index 92774081..bf488ff9 100644 --- a/Gruntfile.js +++ b/Gruntfile.js | |||
@@ -67,12 +67,22 @@ module.exports = function (grunt) { | |||
67 | transform: [ | 67 | transform: [ |
68 | ["babelify", { | 68 | ["babelify", { |
69 | presets: ["es2015"] | 69 | presets: ["es2015"] |
70 | }], "browserify-shim" | 70 | }], ["browserify-shim", { |
71 | "jquery": { | ||
72 | "exports": "$" | ||
73 | }, | ||
74 | "materialize": "materialize", | ||
75 | "jquery-ui": { | ||
76 | "depends": "jquery", | ||
77 | "exports": null | ||
78 | } | ||
79 | }] | ||
71 | ], | 80 | ], |
72 | browserifyOptions: { | 81 | browserifyOptions: { |
73 | browser: { | 82 | browser: { |
74 | "jQuery": "./node_modules/jquery/dist/jquery.js", | 83 | "jQuery": "./node_modules/jquery/dist/jquery.js", |
75 | "jquery.tinydot": "./nodes_modules/jquery.tinydot/src/jquery.tinydot.js" | 84 | "jquery.tinydot": "./node_modules/jquery.tinydot/src/jquery.tinydot.js", |
85 | "jquery.ui": "./node_modules/jquery-ui-browserify/dist/jquery-ui.js" | ||
76 | } | 86 | } |
77 | } | 87 | } |
78 | } | 88 | } |