This repository has been archived by the owner on Aug 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 47
/
Gruntfile.js
247 lines (227 loc) · 6.12 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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
/*global module,require*/
(function () {
'use strict';
module.exports = function (grunt) {
// Load grunt tasks automatically
require('load-grunt-tasks')(grunt);
// Time how long tasks take. Can help when optimizing build times
require('time-grunt')(grunt);
var serveStatic = require('serve-static');
// Configurable paths for the application
var appConfig = {
app: 'app',
dist: 'dist',
test: 'test'
};
// Define the configuration for all the tasks
grunt.initConfig({
// Project settings
yeoman: appConfig,
// Watches files for changes and runs tasks based on the changed files
watch: {
js: {
files: ['<%= yeoman.app %>/**/*.js'],
tasks: ['newer:concat:js', 'newer:jshint:all'],
options: {
livereload: '<%= connect.options.livereload %>'
}
},
jsTest: {
files: ['<%= yeoman.test %>/spec/{,*/}*.js'],
tasks: ['newer:jshint:test', 'karma']
},
html: {
files: [
'<%= yeoman.app %>/**/views/*.html'
],
tasks: ['newer:html2js']
},
gruntfile: {
files: ['Gruntfile.js']
},
livereload: {
options: {
livereload: '<%= connect.options.livereload %>'
},
files: [
'<%= yeoman.app %>/*.*'
]
}
},
concat: {
js: {
src: [
'<%= yeoman.app %>/ng-weekly-scheduler/js/module.js',
'<%= yeoman.app %>/ng-weekly-scheduler/js/**/*.js'
],
dest: '<%= yeoman.dist %>/js/ng-weekly-scheduler.js',
options: {
banner: ';(function( window, undefined ){ \n \'use strict\';\n\n',
footer: '}( window ));'
}
}
},
// The actual grunt server settings
connect: {
options: {
port: 9090,
// Change this to '0.0.0.0' to access the server from outside.
hostname: 'localhost',
livereload: 35090
},
livereload: {
options: {
open: {
target: 'http://localhost:9090'
},
middleware: function (connect) {
return [
connect().use('/vendor', serveStatic('./node_modules')),
serveStatic(appConfig.app),
serveStatic(appConfig.dist)
];
}
}
},
test: {
options: {
port: 9091,
middleware: function () {
return [
serveStatic(appConfig.test),
serveStatic(appConfig.app),
serveStatic(appConfig.dist)
];
}
}
},
dist: {
options: {
open: {
target: 'http://localhost:9090'
},
base: '<%= yeoman.dist %>'
}
}
},
// Make sure code styles are up to par and there are no obvious mistakes
jshint: {
options: {
jshintrc: '.jshintrc',
reporter: require('jshint-stylish')
},
all: {
src: [
'Gruntfile.js',
'<%= yeoman.app %>/**/*.js'
]
},
test: {
options: {
jshintrc: '.jshintrc'
},
src: ['<%= yeoman.test %>/{,*/}*.js']
}
},
// Empties folders to start fresh
clean: {
dist: {
files: [{
dot: true,
src: [
'<%= yeoman.dist %>/{,*/}*'
]
}]
}
},
// Copies remaining files to places other tasks can use
copy: {
dist: {
files: [{
expand: true,
dot: true,
cwd: '<%= yeoman.app %>',
dest: '<%= yeoman.dist %>',
src: [
'*.*'
]
}, {
expand: true,
cwd: 'node_modules',
src: [
'angular/angular*.js',
'angular-animate/angular-animate.js',
'angular-i18n/angular-locale_en-us.js',
'angular-i18n/angular-locale_en-gb.js',
'angular-i18n/angular-locale_fr-fr.js',
'angular-i18n/angular-locale_de-de.js',
'angular-i18n/angular-locale_es-es.js',
'angular-dynamic-locale/dist/tmhDynamicLocale.js',
'moment/moment.js'],
dest: '<%= yeoman.dist %>/vendor'
}]
}
},
// Transforms html templates to js
html2js: {
options: {
base: '<%= yeoman.app %>',
module: 'ngWeeklySchedulerTemplates',
quoteChar: '\'',
htmlmin: {
collapseBooleanAttributes: true,
collapseWhitespace: true,
removeAttributeQuotes: true,
removeComments: true,
removeEmptyAttributes: true,
removeRedundantAttributes: true,
removeScriptTypeAttributes: true,
removeStyleLinkTypeAttributes: true
}
},
templates: {
src: ['<%= yeoman.app %>/ng-weekly-scheduler/views/**/*.html'],
dest: '<%= yeoman.app %>/ng-weekly-scheduler/js/views/templates.js'
}
},
// Test settings
karma: {
unit: {
configFile: 'test/karma.conf.js',
singleRun: true
}
}
});
grunt.registerTask('serve', 'Compile then start a connect web server', function (target) {
if (target === 'dist') {
return grunt.task.run(['build', 'connect:dist:keepalive']);
}
grunt.task.run([
'clean',
'html2js',
'jshint:all',
'concat',
'connect:livereload',
'watch'
]);
});
grunt.registerTask('test', [
'html2js',
'concat',
'jshint',
'connect:test',
'karma'
]);
grunt.registerTask('build', [
'clean',
'html2js',
'concat',
'copy:dist'
]);
grunt.registerTask('default', [
'newer:jshint',
'test',
'build'
]);
};
}());