wiki.techinc.nl/Gruntfile.js
James D. Forrester 269cbdbdd4 resources: Provide an ES6-style Promises library with a skip function
Using https://github.com/taylorhakes/promise-polyfill via a skipFunction.

Bug: T237688
Change-Id: Ib0ffb5d9821e7b734c3f7533cc99e5fdd2c8da3a
2020-04-14 16:51:43 -07:00

166 lines
4 KiB
JavaScript

/* eslint-env node */
module.exports = function ( grunt ) {
var wgServer = process.env.MW_SERVER,
wgScriptPath = process.env.MW_SCRIPT_PATH,
karmaProxy = {};
grunt.loadNpmTasks( 'grunt-banana-checker' );
grunt.loadNpmTasks( 'grunt-contrib-copy' );
grunt.loadNpmTasks( 'grunt-eslint' );
grunt.loadNpmTasks( 'grunt-karma' );
grunt.loadNpmTasks( 'grunt-stylelint' );
grunt.loadNpmTasks( 'grunt-svgmin' );
karmaProxy[ wgScriptPath ] = {
target: wgServer + wgScriptPath,
changeOrigin: true
};
grunt.initConfig( {
eslint: {
options: {
extensions: [ '.js', '.json' ],
cache: true
},
all: [
'**/*.{js,json}',
'!docs/**',
'!node_modules/**',
'!resources/lib/**',
// Skip function
'!resources/src/skip-Promise.js',
'!resources/src/jquery.tipsy/**',
'!resources/src/mediawiki.libs.jpegmeta/**',
// Third-party code of PHPUnit coverage report
'!tests/coverage/**',
'!vendor/**',
// Explicitly say "**/*.js" here in case of symlinks
'!extensions/**/*.js{,on}',
'!skins/**/*.js{,on}'
]
},
banana: {
options: {
requireLowerCase: false,
disallowBlankTranslations: false
},
core: 'languages/i18n/',
exif: 'languages/i18n/exif/',
api: 'includes/api/i18n/',
rest: 'includes/Rest/i18n/',
installer: 'includes/installer/i18n/',
paramvalidator: 'includes/libs/ParamValidator/i18n/'
},
stylelint: {
src: '{resources/src,mw-config}/**/*.{css,less}'
},
svgmin: {
options: {
js2svg: {
indent: '\t',
pretty: true
},
multipass: true,
plugins: [ {
cleanupIDs: false
}, {
removeDesc: false
}, {
removeRasterImages: true
}, {
removeTitle: false
}, {
removeViewBox: false
}, {
removeXMLProcInst: false
}, {
sortAttrs: true
} ]
},
all: {
files: [ {
expand: true,
cwd: 'resources/src',
src: [
'**/*.svg'
],
dest: 'resources/src/',
ext: '.svg'
} ]
}
},
watch: {
files: [
'.{stylelintrc,eslintrc.json}',
'**/*',
'!{docs,extensions,node_modules,skins,vendor}/**'
],
tasks: 'test'
},
karma: {
options: {
customLaunchers: {
ChromeCustom: {
base: 'ChromeHeadless',
// Chrome requires --no-sandbox in Docker/CI.
// WMF CI images expose CHROMIUM_FLAGS which sets that.
flags: ( process.env.CHROMIUM_FLAGS || '' ).split( ' ' )
}
},
proxies: karmaProxy,
files: [ {
pattern: wgServer + wgScriptPath + '/index.php?title=Special:JavaScriptTest/qunit/export',
watched: false,
included: true,
served: false
} ],
logLevel: ( process.env.ZUUL_PROJECT ? 'DEBUG' : 'INFO' ),
frameworks: [ 'qunit' ],
reporters: [ 'mocha' ],
singleRun: true,
autoWatch: false,
// Some tests in extensions don't yield for more than the default 10s (T89075)
browserNoActivityTimeout: 60 * 1000,
// Karma requires Same-Origin (or CORS) by default since v1.1.1
// for better stacktraces. But we load the first request from wgServer
crossOriginAttribute: false
},
main: {
browsers: [ 'ChromeCustom' ]
},
firefox: {
browsers: [ 'FirefoxHeadless' ]
}
},
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 () {
var ok = true;
if ( !process.env.MW_SERVER ) {
grunt.log.error( 'Environment variable MW_SERVER must be set.\n' +
'Set this like $wgServer, e.g. "http://localhost"'
);
ok = false;
}
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"' );
ok = false;
}
return ok;
} );
grunt.registerTask( 'minify', 'svgmin' );
grunt.registerTask( 'lint', [ 'eslint', 'banana', 'stylelint' ] );
grunt.registerTask( 'qunit', [ 'assert-mw-env', 'karma:main' ] );
};