1 // This file is part of Moodle - http://moodle.org/
3 // Moodle is free software: you can redistribute it and/or modify
4 // it under the terms of the GNU General Public License as published by
5 // the Free Software Foundation, either version 3 of the License, or
6 // (at your option) any later version.
8 // Moodle is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 // GNU General Public License for more details.
13 // You should have received a copy of the GNU General Public License
14 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
15 /* jshint node: true, browser: false */
19 * @copyright 2014 Andrew Nicols
20 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
28 module.exports = function(grunt) {
29 var path = require('path'),
31 cwd = process.env.PWD || process.cwd(),
32 async = require('async'),
33 DOMParser = require('xmldom').DOMParser,
34 xpath = require('xpath'),
35 semver = require('semver');
37 // Verify the node version is new enough.
38 var expected = semver.validRange(grunt.file.readJSON('package.json').engines.node);
39 var actual = semver.valid(process.version);
40 if (!semver.satisfies(actual, expected)) {
41 grunt.fail.fatal('Node version not satisfied. Require ' + expected + ', version installed: ' + actual);
44 // Windows users can't run grunt in a subdirectory, so allow them to set
45 // the root by passing --root=path/to/dir.
46 if (grunt.option('root')) {
47 var root = grunt.option('root');
48 if (grunt.file.exists(__dirname, root)) {
49 cwd = path.join(__dirname, root);
50 grunt.log.ok('Setting root to ' + cwd);
52 grunt.fail.fatal('Setting root to ' + root + ' failed - path does not exist');
56 var inAMD = path.basename(cwd) == 'amd';
58 // Globbing pattern for matching all AMD JS source files.
59 var amdSrc = [inAMD ? cwd + '/src/*.js' : '**/amd/src/*.js'];
62 * Function to generate the destination for the uglify task
63 * (e.g. build/file.min.js). This function will be passed to
64 * the rename property of files array when building dynamically:
65 * http://gruntjs.com/configuring-tasks#building-the-files-object-dynamically
67 * @param {String} destPath the current destination
68 * @param {String} srcPath the matched src path
69 * @return {String} The rewritten destination path.
71 var uglifyRename = function(destPath, srcPath) {
72 destPath = srcPath.replace('src', 'build');
73 destPath = destPath.replace('.js', '.min.js');
74 destPath = path.resolve(cwd, destPath);
79 * Find thirdpartylibs.xml and generate an array of paths contained within
80 * them (used to generate ignore files and so on).
82 * @return {array} The list of thirdparty paths.
84 var getThirdPartyPathsFromXML = function() {
85 var thirdpartyfiles = grunt.file.expand('*/**/thirdpartylibs.xml');
86 var libs = ['node_modules/', 'vendor/'];
88 thirdpartyfiles.forEach(function(file) {
89 var dirname = path.dirname(file);
91 var doc = new DOMParser().parseFromString(grunt.file.read(file));
92 var nodes = xpath.select("/libraries/library/location/text()", doc);
94 nodes.forEach(function(node) {
95 var lib = path.join(dirname, node.toString());
96 if (grunt.file.isDir(lib)) {
97 // Ensure trailing slash on dirs.
98 lib = lib.replace(/\/?$/, '/');
101 // Look for duplicate paths before adding to array.
102 if (libs.indexOf(lib) === -1) {
110 // Project configuration.
113 // Even though warnings dont stop the build we don't display warnings by default because
114 // at this moment we've got too many core warnings.
115 options: {quiet: !grunt.option('show-lint-warnings')},
117 // Check YUI module source files.
118 yui: {src: ['**/yui/src/**/*.js', '!*/**/yui/src/*/meta/*.js']}
127 options: {report: 'none'}
133 "theme/boost/style/moodle.css": "theme/boost/scss/preset/default.scss",
134 "theme/classic/style/moodle.css": "theme/classic/scss/classicgrunt.scss"
138 includePaths: ["theme/boost/scss/", "theme/classic/scss/"]
143 nospawn: true // We need not to spawn so config can be changed dynamically.
146 files: ['**/amd/src/**/*.js'],
150 files: ['**/yui/src/**/*.js'],
157 files: ['**/tests/behat/*.feature'],
158 tasks: ['gherkinlint']
169 files: ['**/tests/behat/*.feature'],
174 options: {syntax: 'scss'},
182 // These rules have to be disabled in .stylelintrc for scss compat.
183 "at-rule-no-unknown": true,
192 * Generate ignore files (utilising thirdpartylibs.xml data)
194 tasks.ignorefiles = function() {
195 // An array of paths to third party directories.
196 var thirdPartyPaths = getThirdPartyPathsFromXML();
197 // Generate .eslintignore.
198 var eslintIgnores = ['# Generated by "grunt ignorefiles"', '*/**/yui/src/*/meta/', '*/**/build/'].concat(thirdPartyPaths);
199 grunt.file.write('.eslintignore', eslintIgnores.join('\n'));
200 // Generate .stylelintignore.
201 var stylelintIgnores = [
202 '# Generated by "grunt ignorefiles"',
204 'theme/boost/style/moodle.css',
205 'theme/classic/style/moodle.css',
206 ].concat(thirdPartyPaths);
207 grunt.file.write('.stylelintignore', stylelintIgnores.join('\n'));
211 * Shifter task. Is configured with a path to a specific file or a directory,
212 * in the case of a specific file it will work out the right module to be built.
214 * Note that this task runs the invidiaul shifter jobs async (becase it spawns
215 * so be careful to to call done().
217 tasks.shifter = function() {
218 var done = this.async(),
219 options = grunt.config('shifter.options');
221 // Run the shifter processes one at a time to avoid confusing output.
222 async.eachSeries(options.paths, function(src, filedone) {
224 args.push(path.normalize(__dirname + '/node_modules/shifter/bin/shifter'));
226 // Always ignore the node_modules directory.
227 args.push('--excludes', 'node_modules');
229 // Determine the most appropriate options to run with based upon the current location.
230 if (grunt.file.isMatch('**/yui/**/*.js', src)) {
231 // When passed a JS file, build our containing module (this happen with
233 grunt.log.debug('Shifter passed a specific JS file');
234 src = path.dirname(path.dirname(src));
235 options.recursive = false;
236 } else if (grunt.file.isMatch('**/yui/src', src)) {
237 // When in a src directory --walk all modules.
238 grunt.log.debug('In a src directory');
240 options.recursive = false;
241 } else if (grunt.file.isMatch('**/yui/src/*', src)) {
242 // When in module, only build our module.
243 grunt.log.debug('In a module directory');
244 options.recursive = false;
245 } else if (grunt.file.isMatch('**/yui/src/*/js', src)) {
246 // When in module src, only build our module.
247 grunt.log.debug('In a source directory');
248 src = path.dirname(src);
249 options.recursive = false;
252 if (grunt.option('watch')) {
253 grunt.fail.fatal('The --watch option has been removed, please use `grunt watch` instead');
256 // Add the stderr option if appropriate
257 if (grunt.option('verbose')) {
258 args.push('--lint-stderr');
261 if (grunt.option('no-color')) {
262 args.push('--color=false');
265 var execShifter = function() {
267 grunt.log.ok("Running shifter on " + src);
271 opts: {cwd: src, stdio: 'inherit', env: process.env}
272 }, function(error, result, code) {
274 grunt.fail.fatal('Shifter failed with code: ' + code);
276 grunt.log.ok('Shifter build complete.');
282 // Actually run shifter.
283 if (!options.recursive) {
286 // Check that there are yui modules otherwise shifter ends with exit code 1.
287 if (grunt.file.expand({cwd: src}, '**/yui/src/**/*.js').length > 0) {
288 args.push('--recursive');
291 grunt.log.ok('No YUI modules to build.');
298 tasks.gherkinlint = function() {
299 const done = this.async();
300 const options = grunt.config('gherkinlint.options');
302 // Grab the gherkin-lint linter and required scaffolding.
303 const linter = require('gherkin-lint/src/linter.js');
304 const featureFinder = require('gherkin-lint/src/feature-finder.js');
305 const configParser = require('gherkin-lint/src/config-parser.js');
306 const formatter = require('gherkin-lint/src/formatters/stylish.js');
309 const results = linter.lint(
310 featureFinder.getFeatureFiles(grunt.file.expand(options.files)),
311 configParser.getConfiguration(configParser.defaultConfigFileName)
314 // Print the results out uncondtionally.
315 formatter.printResults(results);
317 // Report on the results.
318 // We exit 1 if there is at least one error, otherwise we exit cleanly.
319 if (results.some(result => result.errors.length > 0)) {
326 tasks.startup = function() {
327 // Are we in a YUI directory?
328 if (path.basename(path.resolve(cwd, '../../')) == 'yui') {
329 grunt.task.run('yui');
330 // Are we in an AMD directory?
332 grunt.task.run('amd');
335 grunt.task.run('css');
336 grunt.task.run('js');
337 grunt.task.run('gherkinlint');
341 // On watch, we dynamically modify config to build only affected files. This
342 // method is slightly complicated to deal with multiple changed files at once (copied
343 // from the grunt-contrib-watch readme).
344 var changedFiles = Object.create(null);
345 var onChange = grunt.util._.debounce(function() {
346 var files = Object.keys(changedFiles);
347 grunt.config('eslint.amd.src', files);
348 grunt.config('eslint.yui.src', files);
349 grunt.config('uglify.amd.files', [{expand: true, src: files, rename: uglifyRename}]);
350 grunt.config('shifter.options.paths', files);
351 grunt.config('gherkinlint.options.files', files);
352 changedFiles = Object.create(null);
355 grunt.event.on('watch', function(action, filepath) {
356 changedFiles[filepath] = action;
360 // Register NPM tasks.
361 grunt.loadNpmTasks('grunt-contrib-uglify');
362 grunt.loadNpmTasks('grunt-contrib-watch');
363 grunt.loadNpmTasks('grunt-sass');
364 grunt.loadNpmTasks('grunt-eslint');
365 grunt.loadNpmTasks('grunt-stylelint');
367 // Register JS tasks.
368 grunt.registerTask('shifter', 'Run Shifter against the current directory', tasks.shifter);
369 grunt.registerTask('gherkinlint', 'Run gherkinlint against the current directory', tasks.gherkinlint);
370 grunt.registerTask('ignorefiles', 'Generate ignore files for linters', tasks.ignorefiles);
371 grunt.registerTask('yui', ['eslint:yui', 'shifter']);
372 grunt.registerTask('amd', ['eslint:amd', 'uglify']);
373 grunt.registerTask('js', ['amd', 'yui']);
375 // Register CSS taks.
376 grunt.registerTask('css', ['stylelint:scss', 'sass', 'stylelint:css']);
378 // Register the startup task.
379 grunt.registerTask('startup', 'Run the correct tasks for the current directory', tasks.startup);
381 // Register the default task.
382 grunt.registerTask('default', ['startup']);