-
Notifications
You must be signed in to change notification settings - Fork 145
/
Makefile.js
411 lines (338 loc) · 11.3 KB
/
Makefile.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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
/**
* @fileoverview Build file
* @author nzakas
*/
/*global config, target, exec, echo, find, which, test, exit, mkdir*/
'use strict';
//------------------------------------------------------------------------------
// Requirements
//------------------------------------------------------------------------------
require('shelljs/make');
var util = require('util'),
path = require('path'),
nodeCLI = require('shelljs-nodecli'),
semver = require('semver'),
dateformat = require('dateformat'),
uglifyjs = require('uglify-js');
//------------------------------------------------------------------------------
// Data
//------------------------------------------------------------------------------
var NODE = 'node ', // intentional extra space
NODE_MODULES = './node_modules/',
DIST_DIR = './dist/',
// Utilities - intentional extra space at the end of each string
JSDOC = NODE + NODE_MODULES + 'jsdoc/jsdoc.js ',
// Since our npm package name is actually 't3js'
DIST_NAME = 't3',
DIST_JQUERY_NAME = DIST_NAME + '-jquery',
DIST_NATIVE_NAME = DIST_NAME + '-native',
// Directories
JS_DIRS = getSourceDirectories(),
// Files
SRC_JQUERY_FILES = ['lib/wrap-start.partial', 'lib/box.js', 'lib/event-target.js', 'lib/dom-jquery.js', 'lib/dom-event-delegate.js', 'lib/context.js', 'lib/application.js', 'lib/wrap-end.partial'],
SRC_NATIVE_FILES = ['lib/wrap-start.partial', 'lib/box.js', 'lib/event-target.js', 'lib/dom-native.js', 'lib/dom-event-delegate.js', 'lib/context.js', 'lib/application.js', 'lib/wrap-end.partial'],
TESTING_JQUERY_FILES = ['lib/wrap-start.partial', 'lib/box.js', 'lib/event-target.js', 'lib/dom-jquery.js', 'lib/dom-event-delegate.js', 'lib/application-stub.js', 'lib/test-service-provider.js', 'lib/wrap-end.partial'],
TESTING_NATIVE_FILES = ['lib/wrap-start.partial', 'lib/box.js', 'lib/event-target.js', 'lib/dom-native.js', 'lib/dom-event-delegate.js', 'lib/application-stub.js', 'lib/test-service-provider.js', 'lib/wrap-end.partial'],
JS_FILES = find(JS_DIRS).filter(fileType('js')).join(' '),
TEST_FILES = find('tests/').filter(fileType('js')).join(' ');
//------------------------------------------------------------------------------
// Helpers
//------------------------------------------------------------------------------
/**
* Checks if current repository has any uncommitted changes
* @return {boolean}
*/
function isDirectoryClean() {
var fatalState = config.fatal; // save current fatal state
config.fatal = false;
var isUnstagedChanges = exec('git diff --exit-code', {silent:true}).code;
var isStagedChanged = exec('git diff --cached --exit-code', {silent:true}).code;
config.fatal = fatalState; // restore fatal state
return !(isUnstagedChanges || isStagedChanged);
}
/**
* Executes a Node CLI and exits with a non-zero exit code if the
* CLI execution returns a non-zero exit code. Otherwise, it does
* not exit.
* @param {...string} [args] Arguments to pass to the Node CLI utility.
* @returns {void}
* @private
*/
function nodeExec(args) {
args = arguments; // make linting happy
var code = nodeCLI.exec.apply(nodeCLI, args).code;
if (code !== 0) {
exit(code);
}
}
/**
* Runs exec() but exits if the exit code is non-zero.
* @param {string} cmd The command to execute.
* @returns {void}
* @private
*/
function execOrExit(cmd) {
var code = exec(cmd).code;
if (code !== 0) {
exit(code);
}
}
/**
* Generates a function that matches files with a particular extension.
* @param {string} extension The file extension (i.e. 'js')
* @returns {Function} The function to pass into a filter method.
* @private
*/
function fileType(extension) {
return function(filename) {
return filename.substring(filename.lastIndexOf('.') + 1) === extension;
};
}
/**
* Determines which directories are present that might have JavaScript files.
* @returns {string[]} An array of directories that exist.
* @private
*/
function getSourceDirectories() {
var dirs = [ 'lib', 'src', 'app' ],
result = [];
dirs.forEach(function(dir) {
if (test('-d', dir)) {
result.push(dir);
}
});
return result;
}
/**
* Gets the git tags that represent versions.
* @returns {string[]} An array of tags in the git repo.
* @private
*/
function getVersionTags() {
var tags = exec('git tag', { silent: true }).output.trim().split(/\n/g);
return tags.reduce(function(list, tag) {
if (semver.valid(tag)) {
list.push(tag);
}
return list;
}, []).sort(semver.compare);
}
/**
* Verifies that common module loaders can be used with dist files
* @returns {void}
* @private
*/
function validateModuleLoading() {
var t3js = require(DIST_DIR + DIST_NAME + '.js');
// Validate CommonJS
if (!t3js || !('Application' in t3js)) {
echo('ERROR: The dist file is not wrapped correctly for CommonJS');
exit(1);
}
}
/**
* Updates the README links with the latest version
* @param string version The latest version string
* @returns {void}
* @private
*/
function updateReadme(version) {
// Copy to temp file
cat('README.md').to('README.tmp');
// Replace Version String
sed('-i', /\/box\/t3js\/v([^/])+/g, '/box/t3js/' + version, 'README.tmp');
// Replace README
rm('README.md');
mv('README.tmp', 'README.md');
}
/**
* Generate distribution files for a single package
* @param Object config The distribution configuration
* @returns {void}
* @private
*/
function generateDistFiles(config) {
// Delete package.json from the cache since it can get updated by npm version
delete require.cache[require.resolve('./package.json')];
var pkg = require('./package.json'),
distFilename = DIST_DIR + config.name + '.js',
minDistFilename = distFilename.replace(/\.js$/, '.min.js'),
minDistSourcemapFilename = minDistFilename + '.map',
distTestingFilename = DIST_DIR + config.name + '-testing' + '.js';
// Add copyrights and version info
var versionComment = '/*! ' + config.name + ' v' + pkg.version + ' */\n',
testingVersionComment = '/*! ' + config.name + '-testing v' + pkg.version + ' */\n',
copyrightComment = cat('./config/copyright.txt');
// concatenate files together and add version/copyright notices
(versionComment + copyrightComment + cat(config.files)).to(distFilename);
(testingVersionComment + copyrightComment + cat(config.testingFiles)).to(distTestingFilename);
// create minified version with source maps
var result = uglifyjs.minify(distFilename, {
output: {
comments: /^!/
},
outSourceMap: path.basename(minDistSourcemapFilename)
});
result.code.to(minDistFilename);
result.map.to(minDistSourcemapFilename);
// create filenames with version in them
cp(distFilename, distFilename.replace('.js', '-' + pkg.version + '.js'));
cp(minDistFilename, minDistFilename.replace('.min.js', '-' + pkg.version + '.min.js'));
cp(distTestingFilename, distTestingFilename.replace('.js', '-' + pkg.version + '.js'));
}
/**
* Generate all distribution files
* @private
*/
function dist() {
if (test('-d', DIST_DIR)) {
rm('-r', DIST_DIR + '*');
} else {
mkdir(DIST_DIR);
}
[{
name: DIST_NATIVE_NAME,
files: SRC_NATIVE_FILES,
testingFiles: TESTING_NATIVE_FILES
}, {
name: DIST_JQUERY_NAME,
files: SRC_JQUERY_FILES,
testingFiles: TESTING_JQUERY_FILES
}, {
name: DIST_NAME,
files: SRC_NATIVE_FILES,
testingFiles: TESTING_NATIVE_FILES
}].forEach(function(config){
generateDistFiles(config);
});
}
/**
* Creates a release version tag and pushes to origin.
* @param {string} type The type of release to do (patch, minor, major)
* @returns {void}
*/
function release(type) {
// 'npm version' needs a clean repository to run
if (!isDirectoryClean()) {
echo('RELEASE ERROR: Working directory must be clean to push release!');
exit(1);
}
echo('Running tests');
target.test();
// Step 1: Create the new version
echo('Creating new version');
var newVersion = exec('npm version ' + type).output.trim();
// Step 2: Generate files
echo('Generating dist files');
dist();
echo('Generating changelog');
target.changelog();
echo('Updating README');
updateReadme(newVersion);
// Step 3: Validate CommonJS wrapping
echo('Validating module loading');
validateModuleLoading();
// Step 4: Add files to current commit
execOrExit('git add -A');
execOrExit('git commit --amend --no-edit');
// Step 5: reset the git tag to the latest commit
execOrExit('git tag -f ' + newVersion);
// Step 6: publish to git
echo('Pushing to github');
execOrExit('git push origin master --tags');
// Step 7: publish to npm
echo('Publishing to NPM');
execOrExit('npm publish');
// Step 8: Update version number in docs site
echo('Updating documentation site');
execOrExit('git checkout gh-pages');
('version: ' + newVersion).to('_data/t3.yml');
execOrExit('git commit -am "Update version number to ' + newVersion + '"');
execOrExit('git fetch origin && git rebase origin/gh-pages && git push origin gh-pages');
// Step 9: Switch back to master
execOrExit('git checkout master');
// Step 10: Party time
}
//------------------------------------------------------------------------------
// Tasks
//------------------------------------------------------------------------------
target.all = function() {
target.test();
};
target.lint = function() {
echo('Validating JavaScript files');
nodeExec('eslint', [JS_FILES, TEST_FILES].join(' '));
};
target.test = function() {
target.lint();
echo('Running browser tests');
var code = exec('node ./node_modules/karma/bin/karma start config/karma-conf.js').code;
if (code !== 0) {
exit(code);
}
echo('Running Utilities tests');
target['utils-test']();
echo('Running API tests');
target['api-test']();
};
target['utils-test'] = function() {
var code = exec('node ./node_modules/karma/bin/karma start config/testing-utils-karma-conf.js').code;
if (code !== 0) {
exit(code);
}
};
target['api-test'] = function() {
// generate dist files that are used by api-test
dist();
nodeExec('mocha', './tests/api-test.js');
// revert generated files
execOrExit('git checkout dist');
};
target['test-watch'] = function() {
echo('Watching files to run browser tests. Press Ctrl+C to exit.');
var code = exec('node ./node_modules/karma/bin/karma start config/karma-conf.js --single-run=false --autoWatch').code;
if (code !== 0) {
exit(code);
}
};
target.docs = function() {
echo('Generating documentation');
exec(JSDOC + '-d jsdoc ' + JS_DIRS.join(' '));
echo('Documentation has been output to /jsdoc');
};
// Don't assign directly to dist since shelljs wraps this function
target.dist = function() {
dist();
};
target.changelog = function() {
// get most recent two tags
var tags = getVersionTags(),
rangeTags = tags.slice(tags.length - 2),
now = new Date(),
timestamp = dateformat(now, 'mmmm d, yyyy');
// output header
(rangeTags[1] + ' - ' + timestamp + '\n').to('CHANGELOG.tmp');
// get log statements
var logs = exec('git log --pretty=format:"* %s (%an)" ' + rangeTags.join('..'), {silent: true}).output.split(/\n/g);
logs = logs.filter(function(line) {
return line.indexOf('Merge pull request') === -1 && line.indexOf('Merge branch') === -1;
});
logs.push(''); // to create empty lines
logs.unshift('');
// output log statements
logs.join('\n').toEnd('CHANGELOG.tmp');
// switch-o change-o
cat('CHANGELOG.tmp', 'CHANGELOG.md').to('CHANGELOG.md.tmp');
rm('CHANGELOG.tmp');
rm('CHANGELOG.md');
mv('CHANGELOG.md.tmp', 'CHANGELOG.md');
};
target.patch = function() {
release('patch');
};
target.minor = function() {
release('minor');
};
target.major = function() {
release('major');
};