-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
45 lines (34 loc) · 1.02 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
'use strict';
module.exports = function (grunt) {
/*
Load npm tasks here.
*/
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-karma');
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks('grunt-react');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-ng-annotate');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-clean');
var userConfig = require( './grunt.settings.js' );
userConfig.pkg = grunt.file.readJSON('package.json');
var taskConfig = require( './grunt.tasks.js' );
grunt.initConfig( grunt.util._.extend( taskConfig, userConfig ) );
/*
Register tasks here
*/
grunt.registerTask('checkAll',
['jshint','karma']);
grunt.registerTask('buildAll', [
'clean',
'checkAll',
'less',
'react',
'concat',
'ngAnnotate',
'uglify',
'clean:tmp'
]);
};