-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jakefile
executable file
·34 lines (29 loc) · 1.28 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
/*
* Copyright 2013 Research In Motion Limited.
*
* Licensed 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.
*/
desc("runs jake build");
task('default', [], require('./build/build').executeBuild);
desc("builds and outputs to /dist by default or to the provided path - jake build [outputPath]");
task('build', [], require('./build/build').executeBuild);
desc("builds and outputs the docs to /docs");
task('docs', [], require('./build/docs').createDocs);
desc("run all tests in node - jake test [path,path2]");
task('test', [], function () {
require('./build/test').runSpecs({}, process.argv.length >= 4 ? process.argv[3] : null);
});
desc("runs jshint - jake lint [path1] [path2]");
task('lint', [], function () {
require('./build/lint').lint(complete, Array.prototype.slice.call(arguments));
}, true);