mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ImageMap
synced 2024-11-23 22:03:31 +00:00
0b1325bc4b
Change-Id: I8018552eb5e44961c0ae0851c9fa075a70525405
29 lines
597 B
JavaScript
29 lines
597 B
JavaScript
/*jshint node:true */
|
|
module.exports = function ( grunt ) {
|
|
grunt.loadNpmTasks( 'grunt-banana-checker' );
|
|
grunt.loadNpmTasks( 'grunt-jsonlint' );
|
|
grunt.loadNpmTasks( 'grunt-contrib-jshint' );
|
|
|
|
var conf = grunt.file.readJSON( 'extension.json' );
|
|
grunt.initConfig( {
|
|
banana: conf.MessagesDirs,
|
|
jshint: {
|
|
all: [
|
|
'**/*.js',
|
|
'!node_modules/**',
|
|
'!vendor/**'
|
|
]
|
|
},
|
|
jsonlint: {
|
|
all: [
|
|
'**/*.json',
|
|
'!node_modules/**',
|
|
'!vendor/**'
|
|
]
|
|
}
|
|
} );
|
|
|
|
grunt.registerTask( 'test', [ 'jsonlint', 'banana', 'jshint' ] );
|
|
grunt.registerTask( 'default', 'test' );
|
|
};
|