2013-12-12 05:18:07 +04:00
|
|
|
#!/usr/bin/env node
|
|
|
|
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
2013-12-04 23:55:48 +04:00
|
|
|
// Generated on 2013-12-04 using generator-backbone-amd 0.0.4
|
|
|
|
|
2013-12-10 21:10:46 +04:00
|
|
|
|
2013-12-04 23:55:48 +04:00
|
|
|
// # Globbing
|
|
|
|
// for performance reasons we're only matching one level down:
|
|
|
|
// 'test/spec/{,*/}*.js'
|
|
|
|
// use this if you want to recursively match all subfolders:
|
|
|
|
// 'test/spec/**/*.js'
|
2013-12-10 21:10:46 +04:00
|
|
|
|
2015-06-10 20:34:32 +03:00
|
|
|
module.exports = function (grunt) {
|
2014-05-23 20:49:20 +04:00
|
|
|
// load all grunt tasks based on environment
|
|
|
|
if (process.env.NODE_ENV && process.env.NODE_ENV === 'production') {
|
|
|
|
require('load-grunt-tasks')(grunt, {scope: 'dependencies'});
|
|
|
|
} else {
|
|
|
|
// show elapsed time at the end
|
|
|
|
require('time-grunt')(grunt);
|
|
|
|
require('load-grunt-tasks')(grunt);
|
|
|
|
}
|
2013-12-04 23:55:48 +04:00
|
|
|
|
2014-12-23 02:14:48 +03:00
|
|
|
// setup logging
|
|
|
|
var mozlog = require('mozlog');
|
|
|
|
var config = require('./server/lib/configuration');
|
|
|
|
mozlog.config(config.get('logging'));
|
|
|
|
|
2013-12-12 05:18:07 +04:00
|
|
|
grunt.initConfig({
|
2015-07-01 00:31:56 +03:00
|
|
|
pkg: grunt.file.readJSON('package.json')
|
2013-12-12 05:18:07 +04:00
|
|
|
});
|
2013-12-04 23:55:48 +04:00
|
|
|
|
2013-12-12 05:18:07 +04:00
|
|
|
grunt.loadTasks('grunttasks');
|
2013-12-04 23:55:48 +04:00
|
|
|
};
|