build: Exclude composer vendor folder
Change-Id: I23d5eabaaa0c13d33f94164a772c2c0b384d1c79
This commit is contained in:
parent
f481c339de
commit
82a68cffec
1 changed files with 7 additions and 3 deletions
10
Gruntfile.js
10
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/**'
|
||||
]
|
||||
}
|
||||
} );
|
||||
|
|
Loading…
Reference in a new issue