mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CiteThisPage
synced 2024-11-15 11:45:23 +00:00
02ae8c272a
Change-Id: I361754666ecb5f66f043a4934668f15cedc07807
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' );
|
|
};
|