mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Cite
synced 2024-11-13 17:53:09 +00:00
Use tabs in json
Exclude composer vendor folder from build Change-Id: I9e28fc2fc7a4ee53dd5bdc8da78822ebb8a806ca
This commit is contained in:
parent
ded809a42a
commit
696f1ced1f
|
@ -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/**'
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
} );
|
} );
|
||||||
|
|
Loading…
Reference in a new issue