mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Popups
synced 2024-11-12 01:08:39 +00:00
536470c01d
Change-Id: Icb65074fe64993314bbb28f690ce3ce0f89fb57c
75 lines
1.5 KiB
JavaScript
75 lines
1.5 KiB
JavaScript
/* eslint-evn node */
|
|
|
|
module.exports = function ( grunt ) {
|
|
const conf = grunt.file.readJSON( 'extension.json' );
|
|
|
|
grunt.loadNpmTasks( 'grunt-banana-checker' );
|
|
grunt.loadNpmTasks( 'grunt-contrib-watch' );
|
|
grunt.loadNpmTasks( 'grunt-eslint' );
|
|
grunt.loadNpmTasks( 'grunt-stylelint' );
|
|
grunt.loadNpmTasks( 'grunt-svgmin' );
|
|
|
|
grunt.initConfig( {
|
|
banana: conf.MessagesDirs,
|
|
eslint: {
|
|
options: {
|
|
cache: true,
|
|
maxWarnings: 0,
|
|
fix: grunt.option( 'fix' )
|
|
},
|
|
all: {
|
|
src: [
|
|
'*.{js,json}',
|
|
'src/**/*.{js,json}',
|
|
'tests/**/*.{js,json}',
|
|
// Lint the built artifacts with ES5 so that no ES6 slips to production
|
|
'resources/dist/*.js'
|
|
]
|
|
}
|
|
},
|
|
stylelint: {
|
|
options: {
|
|
syntax: 'less',
|
|
fix: grunt.option( 'fix' )
|
|
},
|
|
all: [
|
|
'src/**/*.less'
|
|
]
|
|
},
|
|
// SVG Optimization
|
|
svgmin: {
|
|
options: grunt.file.readJSON( '.svgo.json' ),
|
|
all: {
|
|
files: [ {
|
|
expand: true,
|
|
cwd: 'resources/ext.popups.images',
|
|
src: [
|
|
'**/*.svg'
|
|
],
|
|
dest: 'resources/ext.popups.images/',
|
|
ext: '.svg'
|
|
} ]
|
|
}
|
|
},
|
|
watch: {
|
|
options: {
|
|
interrupt: true,
|
|
debounceDelay: 1000
|
|
},
|
|
lint: {
|
|
files: [ 'resources/ext.popups.main/**/*.less', 'resources/**/*.js' ],
|
|
tasks: [ 'lint' ]
|
|
},
|
|
configFiles: {
|
|
files: [ 'Gruntfile.js' ],
|
|
options: {
|
|
reload: true
|
|
}
|
|
}
|
|
}
|
|
} );
|
|
|
|
grunt.registerTask( 'lint', [ 'eslint', 'stylelint', 'banana', 'svgmin' ] );
|
|
grunt.registerTask( 'default', [ 'lint' ] );
|
|
};
|