mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CodeEditor
synced 2024-11-14 19:14:41 +00:00
169e97d8d3
Change-Id: Ia88e2eb429391182052aa09b3e0a4a81859ec778
79 lines
1.7 KiB
JavaScript
79 lines
1.7 KiB
JavaScript
/*!
|
|
* Grunt file
|
|
*
|
|
* @package CodeEditor
|
|
*/
|
|
|
|
/* eslint-env node */
|
|
|
|
module.exports = function ( grunt ) {
|
|
var conf = grunt.file.readJSON( 'extension.json' );
|
|
grunt.loadNpmTasks( 'grunt-banana-checker' );
|
|
grunt.loadNpmTasks( 'grunt-contrib-clean' );
|
|
grunt.loadNpmTasks( 'grunt-contrib-copy' );
|
|
grunt.loadNpmTasks( 'grunt-eslint' );
|
|
grunt.loadNpmTasks( 'grunt-exec' );
|
|
grunt.loadNpmTasks( 'grunt-stylelint' );
|
|
|
|
grunt.initConfig( {
|
|
eslint: {
|
|
options: {
|
|
reportUnusedDisableDirectives: true,
|
|
extensions: [ '.js', '.json' ],
|
|
cache: true
|
|
},
|
|
all: [
|
|
'**/*.js{,on}',
|
|
'!modules/ace/**',
|
|
'!{vendor,node_modules}/**'
|
|
]
|
|
},
|
|
stylelint: {
|
|
all: [
|
|
'**/*.css',
|
|
'**/*.less',
|
|
'!node_modules/**',
|
|
'!modules/ace/**',
|
|
'!vendor/**'
|
|
]
|
|
},
|
|
banana: conf.MessagesDirs,
|
|
exec: {
|
|
'npm-update-ace': {
|
|
cmd: 'npm update ace-builds',
|
|
callback: function ( error, stdout, stderr ) {
|
|
grunt.log.write( stdout );
|
|
if ( stderr ) {
|
|
grunt.log.write( 'Error: ' + stderr );
|
|
}
|
|
|
|
if ( error !== null ) {
|
|
grunt.log.error( 'update error: ' + error );
|
|
}
|
|
}
|
|
}
|
|
},
|
|
clean: {
|
|
ace: [ 'modules/ace/*' ]
|
|
},
|
|
copy: {
|
|
ace: {
|
|
expand: true,
|
|
cwd: 'node_modules/ace-builds/src-noconflict/',
|
|
src: [ '**' ],
|
|
dest: 'modules/ace/'
|
|
},
|
|
'ace-license': {
|
|
expand: true,
|
|
cwd: 'node_modules/ace-builds/',
|
|
src: [ 'LICENSE' ],
|
|
dest: 'modules/ace/'
|
|
}
|
|
}
|
|
} );
|
|
|
|
grunt.registerTask( 'update-ace', [ 'exec:npm-update-ace', 'clean:ace', 'copy:ace', 'copy:ace-license' ] );
|
|
grunt.registerTask( 'test', [ 'eslint', 'stylelint', 'banana' ] );
|
|
grunt.registerTask( 'default', 'test' );
|
|
};
|