From b1dff6dc3fbd3f9d5a40be16c266c801d7c20a4e Mon Sep 17 00:00:00 2001 From: Umherirrender Date: Thu, 3 Aug 2017 15:03:07 +0200 Subject: [PATCH] build: Exclude composer vendor folder Change-Id: I7156ba5eb000bdcd29aba009d8ce8c030f8d2f11 --- Gruntfile.js | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 8e8ec0f3..89962687 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -11,14 +11,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, @@ -30,7 +33,8 @@ module.exports = function ( grunt ) { '*.{less,css}', '**/*.{less,css}', '!node_modules/**', - '!skinStyles/jquery.ui/**' + '!skinStyles/jquery.ui/**', + '!vendor/**' ] } } );