diff options
Diffstat (limited to 'MLEB/LocalisationUpdate/Gruntfile.js')
-rw-r--r-- | MLEB/LocalisationUpdate/Gruntfile.js | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/MLEB/LocalisationUpdate/Gruntfile.js b/MLEB/LocalisationUpdate/Gruntfile.js new file mode 100644 index 00000000..26ca0c16 --- /dev/null +++ b/MLEB/LocalisationUpdate/Gruntfile.js @@ -0,0 +1,28 @@ +/*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' ); +}; |