-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
39 lines (28 loc) · 862 Bytes
/
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
module.exports = function(grunt) {
function loadConfig(path) {
var glob = require('glob');
var object = {};
var key;
glob.sync('*', {cwd: path}).forEach(function(option) {
key = option.replace(/\.js$/,'');
object[key] = require(path + option);
});
return object;
}
var path = "";
var dest = grunt.option('dest') || "dev";
if (dest == "production") { path = "./production"; }
else { path = "./dev"; }
var config = {
pkg: grunt.file.readJSON('package.json'),
//Destination of our production and development builds.
SRC_FOLDER: "./src",
DIST_FOLDER: "./build",
TARGET_FOLDER: path
}
grunt.initConfig(config);
grunt.util._.extend(config, loadConfig('./config/modules/'));
require('load-grunt-tasks')(grunt);
grunt.registerTask('dev', ['sass', 'postcss:dist', 'cssmin']);
grunt.registerTask('default', ['dev']);
};