* jsonlint now includes docs/, includes/ (api and installer i18n), maintenance/, and tests/. 539 files -> 864 files. - Continue to exclude JSDuck artefacts in docs/js/. - Continue to exclude vendor/. * jshint now includes mw-config/ and maintenance/. 177 files -> 179 files. * jscs now includes everything jshint includes. 172 files -> 179 files. - The -skip.js files no longer need excluding. Use the native exclude syntax for jshint and jscs so that other software and services with JSHint support use these as well. Change-Id: Idebf30275f9c93483069367f923ed290c38e0b26
100 lines
2.4 KiB
JavaScript
100 lines
2.4 KiB
JavaScript
/*jshint node:true */
|
|
module.exports = function ( grunt ) {
|
|
grunt.loadNpmTasks( 'grunt-contrib-copy' );
|
|
grunt.loadNpmTasks( 'grunt-contrib-jshint' );
|
|
grunt.loadNpmTasks( 'grunt-contrib-watch' );
|
|
grunt.loadNpmTasks( 'grunt-banana-checker' );
|
|
grunt.loadNpmTasks( 'grunt-jscs' );
|
|
grunt.loadNpmTasks( 'grunt-jsonlint' );
|
|
grunt.loadNpmTasks( 'grunt-karma' );
|
|
|
|
var wgServer = process.env.MW_SERVER,
|
|
wgScriptPath = process.env.MW_SCRIPT_PATH,
|
|
karmaProxy = {};
|
|
|
|
karmaProxy[wgScriptPath] = wgServer + wgScriptPath;
|
|
|
|
grunt.initConfig( {
|
|
jshint: {
|
|
options: {
|
|
jshintrc: true
|
|
},
|
|
all: '.'
|
|
},
|
|
jscs: {
|
|
all: '.'
|
|
},
|
|
jsonlint: {
|
|
all: [
|
|
'.jscsrc',
|
|
'**/*.json',
|
|
'!{docs/js,extensions,node_modules,skins,vendor}/**'
|
|
]
|
|
},
|
|
banana: {
|
|
core: 'languages/i18n/',
|
|
api: 'includes/api/i18n/',
|
|
installer: 'includes/installer/i18n/'
|
|
},
|
|
watch: {
|
|
files: [
|
|
'.js*',
|
|
'**/*',
|
|
'!{docs,extensions,node_modules,skins,vendor}/**'
|
|
],
|
|
tasks: 'test'
|
|
},
|
|
karma: {
|
|
options: {
|
|
proxies: karmaProxy,
|
|
files: [ {
|
|
pattern: wgServer + wgScriptPath + '/index.php?title=Special:JavaScriptTest/qunit/export',
|
|
watched: false,
|
|
included: true,
|
|
served: false
|
|
} ],
|
|
frameworks: [ 'qunit' ],
|
|
reporters: [ 'dots' ],
|
|
singleRun: true,
|
|
autoWatch: false,
|
|
// Some tests in extensions don't yield for more than the default 10s (T89075)
|
|
browserNoActivityTimeout: 60 * 1000
|
|
},
|
|
main: {
|
|
browsers: [ 'Chrome' ]
|
|
},
|
|
more: {
|
|
browsers: [ 'Chrome', 'Firefox' ]
|
|
}
|
|
},
|
|
copy: {
|
|
jsduck: {
|
|
src: 'resources/**/*',
|
|
dest: 'docs/js/modules',
|
|
expand: true,
|
|
rename: function ( dest, src ) {
|
|
return require( 'path' ).join( dest, src.replace( 'resources/', '' ) );
|
|
}
|
|
}
|
|
}
|
|
} );
|
|
|
|
grunt.registerTask( 'assert-mw-env', function () {
|
|
if ( !process.env.MW_SERVER ) {
|
|
grunt.log.error( 'Environment variable MW_SERVER must be set.\n' +
|
|
'Set this like $wgServer, e.g. "http://localhost"'
|
|
);
|
|
}
|
|
if ( !process.env.MW_SCRIPT_PATH ) {
|
|
grunt.log.error( 'Environment variable MW_SCRIPT_PATH must be set.\n' +
|
|
'Set this like $wgScriptPath, e.g. "/w"');
|
|
}
|
|
return !!( process.env.MW_SERVER && process.env.MW_SCRIPT_PATH );
|
|
} );
|
|
|
|
grunt.registerTask( 'lint', ['jshint', 'jscs', 'jsonlint', 'banana'] );
|
|
grunt.registerTask( 'qunit', [ 'assert-mw-env', 'karma:main' ] );
|
|
|
|
grunt.registerTask( 'test', ['lint'] );
|
|
grunt.registerTask( 'default', 'test' );
|
|
};
|