-
Notifications
You must be signed in to change notification settings - Fork 37
/
Gruntfile.js
127 lines (115 loc) · 3.15 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
var grunt = require('grunt'),
http = require('http');
grunt.initConfig({
watch: {
sass: {
files: ['static/scss/*.scss'],
tasks: ['sass'],
options: {
debounceDelay: 500
}
},
jshint: {
files: ['static/js/**/*.js'],
tasks: ['jshint'],
options: {
debounceDelay: 500
}
},
'build-config': {
files: ['site_configs/*.json'],
tasks: ['build-config'],
options: {
debounceDelay: 500
}
}
},
sass: { // Task
dist: { // Target
options: { // Target options
style: 'expanded'
},
files: { // Dictionary of files
'static/css/waltz.css': 'static/scss/waltz.scss',
'static/css/options.css': 'static/scss/options.scss',
'static/css/popup.css': 'static/scss/popup.scss',
'static/css/tutorial.css': 'static/scss/tutorial.scss',
'static/css/sites.css': 'static/scss/sites.scss',
}
}
},
'chrome-extension': {
options: {
name: "Waltz",
version: "2.0.13",
id: "obhibkfopclldmnoohabnbimocpgdine",
chrome: "/Applications/Google Chrome.app/Contents/MacOS/Google Chrome",
clean: true,
certDir: 'cert',
buildDir: 'build',
resources: [
'static/**',
'html/**',
'site_configs/**'
]
}
},
"build-config": {
"go": {
src: 'site_configs',
dest: 'build/site_configs.json'
}
},
jshint: {
files: [
'Gruntfile.js',
'static/js/background/**/*.js',
'static/js/client/**/*.js',
'static/js/shared/**/*.js'
],
options: {
// options here to override JSHint defaults
globals: {
jQuery: true,
console: true,
module: true,
document: true
}
}
},
});
grunt.task.registerMultiTask('build-config', 'Concatenates site configs.', function() {
var siteConfig,
outputDir = this.data.dest.split('/').slice(0, -1).join('/'),
merged = {},
_this = this;
var jsonMerge = function(object1, object2) {
var key, a1, a2;
for (key in object2) {
if (object2.hasOwnProperty(key)) {
object1[key] = object2[key];
}
}
return object1;
};
var iterateThroughFiles = function(filename){
var relativePath = _this.data.src + '/' + filename;
siteConfig = grunt.file.readJSON(relativePath);
for (var domain in siteConfig) {
siteConfig[domain].key = filename.split('.')[0];
}
merged = jsonMerge(merged, siteConfig);
};
grunt.file.expand({ matchBase: true, cwd: this.data.src }, ['*.json']).map(iterateThroughFiles);
// If output dir doesnt exists, then create it
if (!grunt.file.exists(outputDir)) {
grunt.file.mkdir(outputDir);
}
grunt.file.write(this.data.dest, JSON.stringify(merged));
});
grunt.loadNpmTasks('grunt-contrib-sass');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-chrome-compile');
grunt.loadNpmTasks('grunt-merge-json');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.registerTask('default', ['watch']);