-
Notifications
You must be signed in to change notification settings - Fork 556
/
Gruntfile.js
182 lines (169 loc) · 6.77 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
module.exports = function (grunt) {
"use strict";
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
concat: {
dist: {
src: [
"src/begin.js",
"src/objects/axis/begin.js",
"src/objects/axis/methods/*.js",
"src/objects/axis/end.js",
"src/objects/chart/begin.js",
"src/objects/chart/methods/*.js",
"src/objects/chart/end.js",
"src/objects/color/begin.js",
"src/objects/color/end.js",
"src/objects/eventArgs/begin.js",
"src/objects/eventArgs/end.js",
"src/objects/legend/begin.js",
"src/objects/legend/methods/*.js",
"src/objects/legend/end.js",
"src/objects/series/begin.js",
"src/objects/series/methods/*.js",
"src/objects/series/end.js",
"src/objects/storyboard/begin.js",
"src/objects/storyboard/methods/*.js",
"src/objects/storyboard/end.js",
"src/objects/aggregateMethod/*.js",
"src/objects/plot/*.js",
"src/methods/*.js",
"src/end.js"
],
dest: 'dist/<%= pkg.name %>.v<%= pkg.version %>.js'
}
},
uglify: {
dist: {
files: {
'dist/<%= pkg.name %>.v<%= pkg.version %>.min.js': ['<%= concat.dist.dest %>']
}
}
},
copy: {
main: {
files: [
{ src: 'dist/<%= pkg.name %>.v<%= pkg.version %>.min.js', dest: 'dist/<%= pkg.name %>.latest.min.js'},
{ src: 'dist/<%= pkg.name %>.v<%= pkg.version %>.js', dest: 'dist/<%= pkg.name %>.latest.js'}
]
}
},
connect: {
server: {
options: {
port: 3001,
base: '.'
}
}
},
jslint: {
client: {
src: [
'Gruntfile.js',
'dist/<%= pkg.name %>.v<%= pkg.version %>.js'
],
directives: {
browser: true,
nomen: true,
plusplus: true,
predef: [
'd3',
'module',
'console',
'jasmine',
'dimple',
'module',
'define',
'require',
'exports',
'describe',
'it',
'xdescribe',
'xit',
'beforeEach',
'afterEach'
]
}
}
},
prop: {
dist: {
src: [
'examples/templates/*.html'
]
},
options: {
exampleOutputPath: 'examples/',
libPath: '/lib/',
distPath: '/dist/',
version: 'v<%= pkg.version %>',
d3version: 'v<%= pkg.buildDependencies.d3 %>',
scriptTag: '{scriptDependencies}',
header: "<!----------------------------------------------------------------->\n" +
"<!-- AUTOMATICALLY GENERATED CODE - PLEASE EDIT TEMPLATE INSTEAD -->\n" +
"<!----------------------------------------------------------------->\n"
}
}
});
// Load the plugin that provides the "uglify" task.
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-connect');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-jslint');
// Propogate version into relevant files
grunt.registerMultiTask('prop', 'Propagate Versions.', function () {
function generateScriptElements(options, indent) {
var d3Path = "{libFolder}d3.{d3version}.js",
dimplePath = "{distFolder}dimple.{version}.js",
createScriptElement = function (path) {
var scriptElement = '<script src="{path}"></script>';
return scriptElement.split("{path}").join(path);
},
libPath = options.libPath,
distPath = options.distPath,
version = options.version,
d3version = options.d3version,
tab = "",
i;
// default indentation to two spaces
indent = indent || 2;
for (i = 0; i < indent; i++) {
tab += " ";
}
d3Path = d3Path.split("{libFolder}").join(libPath);
d3Path = d3Path.split("{d3version}").join(d3version);
dimplePath = dimplePath.split("{distFolder}").join(distPath);
dimplePath = dimplePath.split("{version}").join(version);
grunt.log.writeln("\nUsing d3: " + d3Path + " with " + d3version);
grunt.log.writeln("\nUsing dimple: " + dimplePath + " with " + version + "\n");
return createScriptElement(d3Path) + "\n" + tab + createScriptElement(dimplePath);
}
var options = this.options(),
outPath = options.exampleOutputPath,
header = options.header,
scriptTag = options.scriptTag,
scripts = generateScriptElements(options);
this.files.forEach(function (f) {
f.src.filter(function (filepath) {
var result = true;
if (!grunt.file.exists(filepath)) {
grunt.log.warn('File "' + filepath + '" not found.');
result = false;
}
return result;
}).map(function (filepath) {
// Read file source.
var src = grunt.file.read(filepath);
// Replace the script placeholder tag with script html elements
src = src.split(scriptTag).join(scripts);
// Write the new file
grunt.log.writeln("Creating " + outPath + filepath.substring(filepath.lastIndexOf("/") + 1));
grunt.file.write(outPath + filepath.substring(filepath.lastIndexOf("/") + 1), header + src);
});
});
});
// Default tasks
grunt.registerTask('default', ['concat', 'jslint', 'uglify', 'copy', 'connect', 'prop']);
};