Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteffen Lindner <mail@steffen-lindner.de>2017-08-27 18:08:05 +0300
committerChristoph Wurst <ChristophWurst@users.noreply.github.com>2017-08-27 18:08:05 +0300
commit3b43d41d8c473adc96a6ea2262286eafd8fae867 (patch)
tree5277ab9402c72aa19b745d3ce402da73226f73f5 /Gruntfile.js
parent4fa5bc2d476249d4cf8be9fb532d5e4f8f83175e (diff)
WIP Move to Webpack3 (#468)
* Add init webpack config * Replace text! with raw-loader! * Add ignore for build.js and remove build.js * Ship build.js to browser, include shim modules * Add handlebars loader * Remove vendor dir, remove bower * Add source-map * Make karma work with webpack, more or less Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at> * Properly load hb templates by webpack Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at> * Remove debug logging * Use modules for view helpers and properly declare dependencies Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at> * Fix jquery.autosize Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at> * Declare global functions Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at> * Always install dev deps Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index 14fe21c05..2e42078f8 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -16,7 +16,8 @@ module.exports = function(grunt) {
options: {
jshintrc: '.jshintrc'
},
- all: ['Gruntfile.js', 'js/*.js', 'js/models/*.js', 'js/views/*.js', '!js/mail.min.js']
+ all: ['Gruntfile.js', 'js/*.js', 'js/models/*.js', 'js/views/*.js',
+ '!js/mail.min.js', '!js/webpack.config.js']
},
jscs: {
src: '<%= jshint.all %>',