forked from mozilla/fxa-js-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
52 lines (39 loc) · 1.32 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
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
module.exports = function (grunt) {
// load all grunt tasks matching the `grunt-*` pattern
require('load-grunt-tasks')(grunt);
// load the Intern tasks
grunt.loadNpmTasks('intern-geezer');
var pkg = grunt.file.readJSON('package.json');
grunt.initConfig({
pkg: pkg,
pkgReadOnly: pkg
});
// load local Grunt tasks
grunt.loadTasks('tasks');
grunt.registerTask('build',
'Build client',
['clean', 'lint', 'requirejs', 'bytesize']);
grunt.registerTask('test',
'Run tests via node',
['intern:node', 'intern:native_node']);
grunt.registerTask('lint',
'Alias for jshint and jscs tasks',
['jshint', 'jscs']);
grunt.registerTask('default',
['build']);
grunt.registerTask('release',
['build', 'bump-only', 'changelog', 'bump-commit', 'yuidoc', 'buildcontrol']);
grunt.registerTask('dev',
['watch:dev']);
grunt.registerTask('debug',
['watch:debug']);
grunt.registerTask('doc',
'Create client documentation using YUIDoc',
['yuidoc', 'open']);
grunt.registerTask('travis',
'Test runner task for Travis CI',
['build', 'intern:node', 'intern:sauce']);
};