This repository has been archived by the owner on Jan 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathGruntfile.js
137 lines (120 loc) · 2.42 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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/*
* grunt-angular-combine
* https://github.com/astik/grunt-angular-combine
*
* Copyright (c) 2013 Romain Gonord
* Licensed under the MIT license.
*/
'use strict';
module.exports = function(grunt) {
require('load-grunt-tasks')(grunt);
require('time-grunt')(grunt);
var banner = '/*! <%= pkg.name %> - <%= grunt.template.today("yyyy-mm-dd") %> */\n';
// Project configuration.
grunt.initConfig({
pkg : require('./bower.json'),
jshint : {
options : {
jshintrc : '.jshintrc',
},
all : [ 'Gruntfile.js', 'src/*.js' ]
},
jscs: {
options: {
config: ".jscsrc"
},
all: {
src: [ 'src/*.js' ]
}
},
jsbeautifier: {
options: {
config: '.jsbeautifier'
},
all: [ 'src/*.js' ]
},
// Before generating any new files, remove any previously-created files.
clean : {
tests : [ 'tmp', 'dist' ],
},
ngAnnotate : {
dist : {
files : [ {
expand : true,
cwd : 'src',
src : '*.js',
dest : '.tmp'
} ]
}
},
concat : {
options: {
separator: ';\n',
banner: '(function(angular){\n',
footer: '\n}(angular));'
},
dist : {
files : {
'dist/angular-combine.js' : [ '.tmp/angular-combine-app.js', '.tmp/angular-combine-config.js', '.tmp/angular-combine-decorator.js' ]
}
}
},
uglify : {
min : {
options : {
mangle : true
},
expand : true,
cwd : 'dist',
src : '*.js',
dest : 'dist',
ext : '.min.js'
}
},
release : {
options : {
tagName : 'v<%= version %>',
additionalFiles: ['bower.json']
}
},
removelogging : {
dist : {
src : 'dist/angular-combine.js',
dest : 'dist/angular-combine-without-console.js'
}
},
usebanner : {
dist : {
options : {
position : 'top',
banner : banner,
linebreak : false
},
expand : true,
cwd : 'dist',
src : '*.js',
dest : 'dist'
}
},
jasmine : {
test : {
src : 'src/*.js',
options : {
specs : 'test/spec/*Spec.js',
vendor : [ //
"bower_components/angular/angular.js",//
"bower_components/angular-mocks/angular-mocks.js" //
]
}
}
},
watch : {
test : {
files : [ 'src/*.js' ],
tasks : [ 'jasmine' ]
}
},
});
grunt.registerTask('default', [ 'jasmine', 'clean', 'jsbeautifier', 'jshint', 'jscs', 'ngAnnotate', 'concat', 'removelogging', 'uglify', 'usebanner' ]);
grunt.registerTask('test', [ 'jasmine', 'watch:test' ]);
};