This repository was archived by the owner on Apr 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27.4k
/
Copy pathplugins.js
70 lines (47 loc) · 2.01 KB
/
plugins.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
'use strict';
/* eslint-disable no-invalid-this */
var util = require('./utils.js');
var npmRun = require('npm-run');
module.exports = function(grunt) {
grunt.registerMultiTask('min', 'minify JS files', function() {
util.min(this.data, this.async());
});
grunt.registerTask('minall', 'minify all the JS files in parallel', function() {
var files = grunt.config('min');
files = Object.keys(files).map(function(key) { return files[key]; });
grunt.util.async.forEach(files, util.min.bind(util), this.async());
});
grunt.registerMultiTask('build', 'build JS files', function() {
util.build(this.data, this.async());
});
grunt.registerTask('buildall', 'build all the JS files in parallel', function() {
var builds = grunt.config('build');
builds = Object.keys(builds).map(function(key) { return builds[key]; });
grunt.util.async.forEach(builds, util.build.bind(util), this.async());
});
grunt.registerMultiTask('write', 'write content to a file', function() {
grunt.file.write(this.data.file, this.data.val);
grunt.log.ok('wrote to ' + this.data.file);
});
grunt.registerTask('docs', 'create AngularJS docs', function() {
npmRun.execSync('gulp --gulpfile docs/gulpfile.js', {stdio: 'inherit'});
});
grunt.registerMultiTask('tests', '**Use `grunt test` instead**', function() {
util.startKarma(this.data, true, this.async());
});
grunt.registerMultiTask('autotest', 'Run and watch the unit tests with Karma', function() {
util.startKarma(this.data, false, this.async());
});
grunt.registerTask('webdriver', 'Update webdriver', function() {
util.updateWebdriver(this.async());
});
grunt.registerMultiTask('protractor', 'Run Protractor integration tests', function() {
util.startProtractor(this.data, this.async());
});
grunt.registerTask('collect-errors', 'Combine stripped error files', function() {
util.collectErrors();
});
grunt.registerTask('firebaseDocsJsonForTravis', function() {
util.firebaseDocsJsonForTravis();
});
};