summaryrefslogtreecommitdiffstats
path: root/skins/CologneBlue/Gruntfile.js
diff options
context:
space:
mode:
authorNicolas Lécureuil <neoclust@mageia.org>2017-04-19 18:04:21 +0200
committerNicolas Lécureuil <neoclust@mageia.org>2017-04-19 18:04:21 +0200
commitae1690690271c651ba9f9c01006fc7002eb5aac4 (patch)
tree641b89b9aed3f2fff2eb44ee7663131e44e63e55 /skins/CologneBlue/Gruntfile.js
parent4950c2edf9601bd12b2fd77c33b6e34d3a625f61 (diff)
downloadmediawiki-ae1690690271c651ba9f9c01006fc7002eb5aac4.tar
mediawiki-ae1690690271c651ba9f9c01006fc7002eb5aac4.tar.gz
mediawiki-ae1690690271c651ba9f9c01006fc7002eb5aac4.tar.bz2
mediawiki-ae1690690271c651ba9f9c01006fc7002eb5aac4.tar.xz
mediawiki-ae1690690271c651ba9f9c01006fc7002eb5aac4.zip
Add new skins
Diffstat (limited to 'skins/CologneBlue/Gruntfile.js')
-rw-r--r--skins/CologneBlue/Gruntfile.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/skins/CologneBlue/Gruntfile.js b/skins/CologneBlue/Gruntfile.js
new file mode 100644
index 0000000..9c56558
--- /dev/null
+++ b/skins/CologneBlue/Gruntfile.js
@@ -0,0 +1,20 @@
+/*jshint node:true */
+module.exports = function ( grunt ) {
+ grunt.loadNpmTasks( 'grunt-banana-checker' );
+ grunt.loadNpmTasks( 'grunt-jsonlint' );
+
+ grunt.initConfig( {
+ banana: {
+ all: 'i18n/'
+ },
+ jsonlint: {
+ all: [
+ '**/*.json',
+ '!node_modules/**'
+ ]
+ }
+ } );
+
+ grunt.registerTask( 'test', [ 'jsonlint', 'banana' ] );
+ grunt.registerTask( 'default', 'test' );
+};