mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CiteThisPage
synced 2024-11-15 03:33:55 +00:00
19 lines
310 B
JavaScript
19 lines
310 B
JavaScript
|
/*!
|
||
|
* Grunt file
|
||
|
*
|
||
|
* @package CiteThisPage
|
||
|
*/
|
||
|
|
||
|
/*jshint node:true */
|
||
|
module.exports = function ( grunt ) {
|
||
|
grunt.loadNpmTasks( 'grunt-banana-checker' );
|
||
|
grunt.initConfig( {
|
||
|
banana: {
|
||
|
all: ["i18n/"]
|
||
|
}
|
||
|
} );
|
||
|
|
||
|
grunt.registerTask( 'test', [ 'banana' ] );
|
||
|
grunt.registerTask( 'default', 'test' );
|
||
|
};
|