mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/InputBox
synced 2024-11-27 16:39:59 +00:00
build: Configure banana-checker and jsonlint
Change-Id: I0b1fa679610ab68bd971f883a47645d3d4488046
This commit is contained in:
parent
99c6ac6784
commit
eb23e0689b
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -2,3 +2,4 @@
|
||||||
*~
|
*~
|
||||||
*.kate-swp
|
*.kate-swp
|
||||||
.*.swp
|
.*.swp
|
||||||
|
node_modules/
|
||||||
|
|
20
Gruntfile.js
Normal file
20
Gruntfile.js
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
/*jshint node:true */
|
||||||
|
module.exports = function ( grunt ) {
|
||||||
|
'use strict';
|
||||||
|
grunt.loadNpmTasks( 'grunt-banana-checker' );
|
||||||
|
grunt.loadNpmTasks( 'grunt-jsonlint' );
|
||||||
|
|
||||||
|
var conf = grunt.file.readJSON( 'extension.json' );
|
||||||
|
grunt.initConfig( {
|
||||||
|
banana: conf.MessagesDirs,
|
||||||
|
jsonlint: {
|
||||||
|
all: [
|
||||||
|
'**/*.json',
|
||||||
|
'!node_modules/**'
|
||||||
|
]
|
||||||
|
}
|
||||||
|
} );
|
||||||
|
|
||||||
|
grunt.registerTask( 'test', [ 'jsonlint', 'banana' ] );
|
||||||
|
grunt.registerTask( 'default', 'test' );
|
||||||
|
};
|
12
package.json
Normal file
12
package.json
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{
|
||||||
|
"private": true,
|
||||||
|
"scripts": {
|
||||||
|
"test": "grunt test"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"grunt": "0.4.5",
|
||||||
|
"grunt-cli": "0.1.13",
|
||||||
|
"grunt-banana-checker": "0.2.2",
|
||||||
|
"grunt-jsonlint": "1.0.4"
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue