Use tabs in json

Exclude composer vendor folder from build

Change-Id: I9e28fc2fc7a4ee53dd5bdc8da78822ebb8a806ca
This commit is contained in:
Umherirrender 2017-08-03 15:19:10 +02:00
parent ded809a42a
commit 696f1ced1f
2 changed files with 7 additions and 4 deletions

View file

@ -19,7 +19,8 @@ module.exports = function ( grunt ) {
'**/*.js', '**/*.js',
'{.jsduck,build}/**/*.js', '{.jsduck,build}/**/*.js',
'modules/**/*.js', 'modules/**/*.js',
'!node_modules/**' '!node_modules/**',
'!vendor/**'
] ]
}, },
banana: conf.MessagesDirs, banana: conf.MessagesDirs,
@ -27,14 +28,16 @@ module.exports = function ( grunt ) {
all: [ all: [
'**/*.css', '**/*.css',
'**/*.less', '**/*.less',
'!node_modules/**' '!node_modules/**',
'!vendor/**'
] ]
}, },
jsonlint: { jsonlint: {
all: [ all: [
'**/*.json', '**/*.json',
'.stylelintrc', '.stylelintrc',
'!node_modules/**' '!node_modules/**',
'!vendor/**'
] ]
} }
} ); } );