wiki.techinc.nl/Gruntfile.js
James D. Forrester 276c30ebee build: Enforce the rest of the colour-related stylelints
* Hex colours must be in short form where possible ('fff' not 'ffffff')
* Hex colours must be used over named colours ('fff' not 'white')
* Hex colours must be valid ('fff' not 'ffq')

Change-Id: I2ba04cc3ad9898c17fee3c65bb3bead834c3a1fd
2016-05-19 17:22:41 +01:00

111 lines
2.7 KiB
JavaScript

/*jshint node:true */
module.exports = function ( grunt ) {
grunt.loadNpmTasks( 'grunt-contrib-copy' );
grunt.loadNpmTasks( 'grunt-contrib-jshint' );
grunt.loadNpmTasks( 'grunt-stylelint' );
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: {
options: {
disallowBlankTranslations: false
},
core: 'languages/i18n/',
api: 'includes/api/i18n/',
installer: 'includes/installer/i18n/'
},
stylelint: {
options: {
syntax: 'less'
},
src: '{resources/src/*,mw-config/**}/*.{css,less}'
},
watch: {
files: [
'.{stylelintrc,jscsrc,jshintignore,jshintrc}',
'**/*',
'!{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
} ],
logLevel: 'DEBUG',
frameworks: [ 'qunit' ],
reporters: [ 'progress' ],
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', 'stylelint' ] );
grunt.registerTask( 'qunit', [ 'assert-mw-env', 'karma:main' ] );
grunt.registerTask( 'test', [ 'lint' ] );
grunt.registerTask( 'default', 'test' );
};