1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-08-01 17:38:38 +00:00

remove autocomplete and bring fonts through npm

This commit is contained in:
Thomas Citharel 2016-09-28 18:59:15 +02:00
parent fc487c4eb1
commit 8f234d0156
No known key found for this signature in database
GPG key ID: 5780691F5FE48FB5
3 changed files with 32 additions and 8 deletions

View file

@ -67,12 +67,22 @@ module.exports = function (grunt) {
transform: [
["babelify", {
presets: ["es2015"]
}], "browserify-shim"
}], ["browserify-shim", {
"jquery": {
"exports": "$"
},
"materialize": "materialize",
"jquery-ui": {
"depends": "jquery",
"exports": null
}
}]
],
browserifyOptions: {
browser: {
"jQuery": "./node_modules/jquery/dist/jquery.js",
"jquery.tinydot": "./nodes_modules/jquery.tinydot/src/jquery.tinydot.js"
"jquery.tinydot": "./node_modules/jquery.tinydot/src/jquery.tinydot.js",
"jquery.ui": "./node_modules/jquery-ui-browserify/dist/jquery-ui.js"
}
}
}