From 82a68cffecf36a99e0dc56248f10cc759ad41b00 Mon Sep 17 00:00:00 2001 From: Umherirrender Date: Thu, 3 Aug 2017 15:02:59 +0200 Subject: [PATCH] build: Exclude composer vendor folder Change-Id: I23d5eabaaa0c13d33f94164a772c2c0b384d1c79 --- Gruntfile.js | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 53b3433..5d49a79 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -10,14 +10,17 @@ module.exports = function ( grunt ) { all: [ '*.js', '**/*.js', - '!node_modules/**' + '!node_modules/**', + '!vendor/**' ] }, jsonlint: { all: [ '*.json', '**/*.json', - '!node_modules/**' + '.stylelintrc', + '!node_modules/**', + '!vendor/**' ] }, banana: conf.MessagesDirs, @@ -28,7 +31,8 @@ module.exports = function ( grunt ) { all: [ '*.{le,c}ss', '**/*.{le,c}ss', - '!node_modules/**' + '!node_modules/**', + '!vendor/**' ] } } );