-
Notifications
You must be signed in to change notification settings - Fork 17
/
Gruntfile.js
69 lines (59 loc) · 2.02 KB
/
Gruntfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
module.exports = function (grunt) {
// Load modules
require('jit-grunt')(grunt, {
});
/**
* Loads all available tasks options
*
* @param {String} folder
*
* @return {Object}
*/
function loadConfig(folder) {
var glob = require('glob');
var path = require('path');
var key;
glob.sync('**/*.js', {cwd: folder}).forEach(function (option) {
key = path.basename(option, '.js');
config[key] = require(folder + option);
});
}
////////////////////////////////////////////////////////////////////
//////////////////////////// CONFIGURATION /////////////////////////
////////////////////////////////////////////////////////////////////
var config = {
pkg : grunt.file.readJSON('package.json'),
name: '<%= pkg.name %>',
grunt : '.grunt',
app : 'public/app',
builds : 'public/builds',
components: 'public/components',
paths: {
original: {
css : '<%= app %>/css',
js : '<%= app %>/js',
sass : '<%= app %>/sass',
fonts : '<%= app %>/fonts',
},
compiled : {
css : '<%= builds %>/css',
js : '<%= builds %>/js',
fonts: '<%= builds %>/fonts',
},
components: {
jquery : '<%= components %>/jquery/dist/jquery.js',
angular : '<%= components %>/angular/angular.js',
bootstrap : {
fonts : '<%= components %>/bootstrap-sass-official/assets/fonts/bootstrap',
js : '<%= components %>/bootstrap-sass-official/assets/javascripts/bootstrap.js',
}
}
},
};
// Load all tasks
var gruntPath = './' + config.grunt + '/';
loadConfig(gruntPath);
grunt.initConfig(config);
// Load custom tasks
require(gruntPath + 'tasks.js')(grunt);
};