bigbluebutton-Github/bigbluebutton-html5/Gruntfile.js
2016-05-30 15:07:02 -07:00

108 lines
3.1 KiB
JavaScript
Executable File

/* jshint node: true */
'use strict';
module.exports = function (grunt) {
require('load-grunt-tasks')(grunt);
// importing the Meteor settings:
var SETTINGS_DEV = require('./settings-development.json');
var SETTINGS_PROD = require('./settings-production.json');
// root URL in development/production:
var devRootURL = (SETTINGS_DEV.rootURL == undefined)
? 'http://127.0.0.1/html5client'
: SETTINGS_DEV.rootURL;
var prodRootURL = (SETTINGS_PROD.rootURL == undefined)
? 'http://127.0.0.1/html5client'
: SETTINGS_PROD.rootURL;
// command line string containing the Meteor's home directory in development/production:
var devHomeStr = (SETTINGS_DEV.home == undefined) ? '' : ('HOME=' + SETTINGS_DEV.home + ' ');
var prodHomeStr = (SETTINGS_PROD.home == undefined) ? '' : ('HOME=' + SETTINGS_PROD.home + ' ');
// final commands:
var METEOR_DEV_COMMAND = devHomeStr + 'ROOT_URL=' +
devRootURL + ' meteor --settings settings-development.json';
var METEOR_PROD_COMMAND = prodHomeStr + 'ROOT_URL=' +
prodRootURL + ' meteor --settings settings-production.json';
// configure Grunt
grunt.initConfig({
watch: {
scripts: {
files: ['**/*.js', '**/*.jsx'],
tasks: ['force:newer:jscs:check'],
options: {
event: ['all'],
spawn: true,
},
},
},
jscs: {
check: {
src: ['**/*.js', '**/*.jsx'],
options: {
config: '.jscsrc',
verbose: true,
esnext: true,
},
},
autofix: {
src: ['**/*.js', '**/*.jsx'],
options: {
config: '.jscsrc',
verbose: true,
esnext: true,
fix: true,
},
},
},
shell: {
start_meteor_development: {
command: METEOR_DEV_COMMAND,
},
start_meteor_production: {
command: METEOR_DEV_COMMAND,
},
},
concurrent: {
options: {
logConcurrentOutput: true,
limit: 3,
},
meteor_watch_development: {
tasks: ['shell:start_meteor_development', 'watch'],
},
meteor_watch_production: {
tasks: ['shell:start_meteor_production', 'watch'],
},
},
});
grunt.loadNpmTasks('grunt-jscs');
grunt.loadNpmTasks('grunt-force-task');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-shell');
grunt.loadNpmTasks('grunt-concurrent');
grunt.loadNpmTasks('grunt-newer');
var mode = (grunt.option('mode') == 'production') ? 'production' : 'development';
// sets the default task to run JSCS first (forcing our way past warnings) and then start Meteor:
grunt.registerTask('default', ['force:newer:jscs:check', 'concurrent:meteor_watch_' + mode]);
// sets the autofix task to fix JSCS warning when possible and then start Meteor:
grunt.registerTask('autofix', ['force:newer:jscs:autofix', 'concurrent:meteor_watch_' + mode]);
// runs the linter task:
grunt.registerTask('quicklint', ['force:jscs:check']);
// runs the linter task and autofixes errors when possible:
grunt.registerTask('quickfix', ['force:jscs:autofix']);
};