mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-12 09:09:25 +00:00
00a98dd8f2
Bug: T201491 Change-Id: I28d3b3871a2de54e575163bec7c364b68da8d5a6
226 lines
5.2 KiB
JavaScript
226 lines
5.2 KiB
JavaScript
/*!
|
|
* Grunt file
|
|
*
|
|
* @package VisualEditor
|
|
*/
|
|
|
|
/* eslint-env node, es6 */
|
|
module.exports = function ( grunt ) {
|
|
var modules = grunt.file.readJSON( 'lib/ve/build/modules.json' ),
|
|
screenshotOptions = {
|
|
reporter: 'spec',
|
|
// TODO: Work out how to catch this timeout and continue.
|
|
// For now just make it very long.
|
|
timeout: 5 * 60 * 1000,
|
|
require: [
|
|
function () {
|
|
// eslint-disable-next-line no-undef, no-implicit-globals
|
|
langs = [ 'en' ];
|
|
}
|
|
]
|
|
},
|
|
screenshotOptionsAll = {
|
|
reporter: 'spec',
|
|
// TODO: Work out how to catch this timeout and continue.
|
|
// For now just make it very long.
|
|
timeout: 5 * 60 * 1000,
|
|
require: [
|
|
function () {
|
|
// eslint-disable-next-line no-undef, no-implicit-globals
|
|
langs = require( './build/tasks/screenshotLangs.json' ).langs;
|
|
}
|
|
]
|
|
};
|
|
|
|
grunt.loadNpmTasks( 'grunt-banana-checker' );
|
|
grunt.loadNpmTasks( 'grunt-contrib-copy' );
|
|
grunt.loadNpmTasks( 'grunt-contrib-watch' );
|
|
grunt.loadNpmTasks( 'grunt-eslint' );
|
|
grunt.loadNpmTasks( 'grunt-image' );
|
|
grunt.loadNpmTasks( 'grunt-mocha-test' );
|
|
grunt.loadNpmTasks( 'grunt-stylelint' );
|
|
grunt.loadNpmTasks( 'grunt-tyops' );
|
|
grunt.loadTasks( 'lib/ve/build/tasks' );
|
|
grunt.loadTasks( 'build/tasks' );
|
|
|
|
grunt.initConfig( {
|
|
jsduckcatconfig: {
|
|
main: {
|
|
target: '.jsduck/categories.json',
|
|
from: [
|
|
'.jsduck/mw-categories.json',
|
|
{
|
|
file: 'lib/ve/.jsduck/categories.json',
|
|
aggregate: {
|
|
'VisualEditor (core)': [
|
|
'General',
|
|
'Initialization',
|
|
'DataModel',
|
|
'ContentEditable',
|
|
'User Interface',
|
|
'Tests'
|
|
]
|
|
},
|
|
include: [ 'UnicodeJS', 'OOjs UI', 'Upstream' ]
|
|
}
|
|
]
|
|
}
|
|
},
|
|
buildloader: {
|
|
egiframe: {
|
|
targetFile: '.jsduck/eg-iframe.html',
|
|
template: '.jsduck/eg-iframe.html.template',
|
|
modules: modules,
|
|
load: [ 'visualEditor.desktop.standalone' ],
|
|
pathPrefix: 'lib/ve/',
|
|
indent: '\t\t'
|
|
}
|
|
},
|
|
mochaTest: {
|
|
'screenshots-en': {
|
|
options: screenshotOptions,
|
|
src: [ 'build/screenshots.userGuide.js' ]
|
|
},
|
|
'screenshots-all': {
|
|
options: screenshotOptionsAll,
|
|
src: [ 'build/screenshots.userGuide.js' ]
|
|
},
|
|
'diff-screenshots-en': {
|
|
options: screenshotOptions,
|
|
src: [ 'build/screenshots.diffs.js' ]
|
|
},
|
|
'diff-screenshots-all': {
|
|
options: screenshotOptionsAll,
|
|
src: [ 'build/screenshots.diffs.js' ]
|
|
}
|
|
},
|
|
image: {
|
|
pngs: {
|
|
options: {
|
|
zopflipng: true,
|
|
pngout: true,
|
|
optipng: true,
|
|
advpng: true,
|
|
pngcrush: true
|
|
},
|
|
'screenshots-en': {
|
|
expand: true,
|
|
src: 'screenshots/*-en.png'
|
|
},
|
|
'screenshots-all': {
|
|
expand: true,
|
|
src: 'screenshots/*.png'
|
|
}
|
|
},
|
|
svgs: {
|
|
options: {
|
|
svgo: [
|
|
'--pretty',
|
|
'--enable=removeRasterImages',
|
|
'--enable=sortAttrs',
|
|
'--disable=cleanupIDs',
|
|
'--disable=removeDesc',
|
|
'--disable=removeTitle',
|
|
'--disable=removeViewBox',
|
|
'--disable=removeXMLProcInst'
|
|
]
|
|
},
|
|
expand: true,
|
|
src: 'images/*.svg'
|
|
}
|
|
},
|
|
tyops: {
|
|
options: {
|
|
typos: 'build/typos.json'
|
|
},
|
|
src: [
|
|
'**/*.{js,json,less,css,txt,php}',
|
|
'!package-lock.json',
|
|
'!build/typos.json',
|
|
'!i18n/**',
|
|
'!lib/**',
|
|
'!{docs,node_modules,vendor}/**',
|
|
'!.git/**'
|
|
]
|
|
},
|
|
eslint: {
|
|
options: {
|
|
reportUnusedDisableDirectives: true,
|
|
extensions: [ '.js', '.json' ],
|
|
cache: true
|
|
},
|
|
all: [
|
|
'*.{js,json}',
|
|
'{build,modules}/**/*.{js,json}'
|
|
]
|
|
},
|
|
stylelint: {
|
|
all: [
|
|
'**/*.css',
|
|
'**/*.less',
|
|
'!coverage/**',
|
|
'!dist/**',
|
|
'!docs/**',
|
|
'!lib/**',
|
|
'!node_modules/**',
|
|
'!vendor/**'
|
|
]
|
|
},
|
|
banana: {
|
|
all: [
|
|
'i18n/{ve-mw,ve-mw/api,ve-wmf}'
|
|
]
|
|
},
|
|
copy: {
|
|
jsduck: {
|
|
src: 'lib/ve/**/*',
|
|
dest: 'docs/',
|
|
expand: true
|
|
}
|
|
},
|
|
watch: {
|
|
files: [
|
|
'.{stylelintrc,eslintrc}.json',
|
|
'<%= eslint.all %>',
|
|
'<%= stylelint.all %>'
|
|
],
|
|
tasks: 'test'
|
|
}
|
|
} );
|
|
|
|
grunt.registerTask( 'git-status', function () {
|
|
var done = this.async();
|
|
// Are there unstaged changes?
|
|
require( 'child_process' ).exec( 'git ls-files --modified', function ( err, stdout, stderr ) {
|
|
var ret = err || stderr || stdout;
|
|
if ( ret ) {
|
|
grunt.log.error( 'Unstaged changes in these files:' );
|
|
grunt.log.error( ret );
|
|
// Show a condensed diff
|
|
require( 'child_process' ).exec( 'git diff -U1 | tail -n +3', function ( err, stdout, stderr ) {
|
|
grunt.log.write( err || stderr || stdout );
|
|
done( false );
|
|
} );
|
|
} else {
|
|
grunt.log.ok( 'No unstaged changes.' );
|
|
done();
|
|
}
|
|
} );
|
|
} );
|
|
|
|
grunt.registerTask( 'build', [ 'jsduckcatconfig', 'buildloader' ] );
|
|
grunt.registerTask( 'lint', [ 'tyops', 'eslint', 'stylelint', 'banana' ] );
|
|
grunt.registerTask( 'test', [ 'build', 'lint' ] );
|
|
grunt.registerTask( 'test-ci', [ 'git-status' ] );
|
|
grunt.registerTask( 'screenshots', [ 'mochaTest:screenshots-en', 'image:pngs' ] );
|
|
grunt.registerTask( 'screenshots-all', [ 'mochaTest:screenshots-all', 'image:pngs' ] );
|
|
grunt.registerTask( 'default', 'test' );
|
|
|
|
if ( process.env.JENKINS_HOME ) {
|
|
grunt.renameTask( 'test', 'test-internal' );
|
|
grunt.registerTask( 'test', [ 'test-internal', 'test-ci' ] );
|
|
} else {
|
|
grunt.registerTask( 'ci', [ 'test', 'image:svgs', 'test-ci' ] );
|
|
}
|
|
};
|