forked from ripple-emulator/ripple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jakefile
78 lines (66 loc) · 2.93 KB
/
Jakefile
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
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
/*global desc: false, task: false, complete: false, namespace: false */
var fs = require('fs');
desc("runs jake build");
task('default', ['fixwhitespace'], require('./build/build'));
desc("compiles source files for targets/* - usage: jake build [target] where target is the folder name (defaults to all)");
task('build', [], require('./build/build'), true);
desc("test and lint before building (with js compression)");
task('deploy', [], require('./build/deploy'), true);
desc("run all tests in node with an emulated dom - jake test [path]...");
task('test', [], function () {
require('./build/test')(arguments.length > 0 ?
Array.prototype.slice.apply(arguments) : null);
});
namespace('test', function () {
desc("runs jake test with code coverage");
task('cov', [], function (customPaths) {
require('./build/test/cov')(customPaths, complete);
}, true);
});
desc("boot test server for running all tests in the browser");
task('btest', [], require('./build/btest'));
desc("runs jshint + csslint - jake lint [path]...");
task('lint', [], function () {
require('./build/lint')(Array.prototype.slice.call(arguments));
}, true);
desc("show various codebase stats");
task('stats', [], require('./build/stats'));
desc("cleans any built extension directories");
task('clean', [], function () {
require('./build/clean')(null, {
take: function () {},
pass: complete
});
}, true);
desc('converts tabs to four spaces, eliminates trailing white space, converts newlines to proper form - enforcing style guide ftw!');
task('fixwhitespace', function() {
require('./build/whitespace').fix(function(file, newSource) {
console.log("fixed whitespace issues in:");
fs.writeFileSync(file, newSource, 'utf8');
console.log(" " + file);
}, complete);
}, true);
desc('builds then creates an npm package - jake pack[allow-pending,no-test,no-lint,no-build,no-compress,<tagname>] or jake pack[help]');
task('pack', [], function () {
require('./build/pack')(Array.prototype.slice.apply(arguments));
});
desc('Runs Apache RAT to audit source file license headers');
task('rat', [], require('./build/rat'));