aboutsummaryrefslogtreecommitdiffhomepage
path: root/Gruntfile.js
diff options
context:
space:
mode:
authorThomas Citharel <tcit@tcit.fr>2016-11-14 10:01:12 +0100
committerGitHub <noreply@github.com>2016-11-14 10:01:12 +0100
commitd37081e50b5c6f6d6d37523ab51082947c54fe03 (patch)
treeaa85385af6fe1002d9de3427c37ce5a643773ed4 /Gruntfile.js
parent8315507384c5cbc26d6f73729aeb97395e3e55fa (diff)
parent8d7b4f0eff9d07f8d6d354e09fd926abf26aa4ce (diff)
downloadwallabag-d37081e50b5c6f6d6d37523ab51082947c54fe03.tar.gz
wallabag-d37081e50b5c6f6d6d37523ab51082947c54fe03.tar.zst
wallabag-d37081e50b5c6f6d6d37523ab51082947c54fe03.zip
Merge pull request #2562 from wallabag/image-bigger
Bigger image preview in case of only image content
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js9
1 files changed, 7 insertions, 2 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index 72a407f9..72473b21 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -189,8 +189,11 @@ module.exports = function (grunt) {
189 }, 189 },
190 stylelint: { 190 stylelint: {
191 target: ['<%= appDir %>/themes/material/css/*.css', '<%= appDir %>/themes/baggy/css/*.css'] 191 target: ['<%= appDir %>/themes/material/css/*.css', '<%= appDir %>/themes/baggy/css/*.css']
192 },
193 watch: {
194 files: ['<%= appDir %>/**/*.css', '<%= appDir %>/**/*.js'],
195 tasks: ['css', 'js']
192 } 196 }
193
194 }); 197 });
195 198
196 grunt.registerTask( 199 grunt.registerTask(
@@ -221,5 +224,7 @@ module.exports = function (grunt) {
221 'tests', 224 'tests',
222 'Test css and js style conformity', 225 'Test css and js style conformity',
223 ['eslint', 'stylelint', 'default'] 226 ['eslint', 'stylelint', 'default']
224 ) 227 ),
228
229 grunt.loadNpmTasks('grunt-contrib-watch');
225}; 230};