forked from CaryLandholt/AngularFun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.coffee
408 lines (382 loc) · 12.3 KB
/
Gruntfile.coffee
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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
# Build configurations.
module.exports = (grunt) ->
grunt.initConfig
# Deletes dist and temp directories.
# The temp directory is used during the build process.
# The dist directory contains the artifacts of the build.
# These directories should be deleted before subsequent builds.
# These directories are not committed to source control.
clean:
working:
src: [
'./dist/'
'./dist_test/'
'./.temp/'
]
# Used for those that desire plain old JavaScript.
jslove:
src: [
'**/*.coffee'
'!**/node_modules/**'
]
# Compile CoffeeScript (.coffee) files to JavaScript (.js).
coffee:
scripts:
files: [
cwd: './src/'
src: 'scripts/**/*.coffee'
dest: './.temp/'
expand: true
ext: '.js'
,
cwd: './test/'
src: 'scripts/**/*.coffee'
dest: './dist_test/'
expand: true
ext: '.js'
]
options:
# Don't include a surrounding Immediately-Invoked Function Expression (IIFE) in the compiled output.
# For more information on IIFEs, please visit http://benalman.com/news/2010/11/immediately-invoked-function-expression/
bare: true
# Used for those that desire plain old JavaScript.
jslove:
files: [
cwd: './'
src: [
'**/*.coffee'
'!**/node_modules/**'
]
dest: './'
expand: true
ext: '.js'
]
options: '<%= coffee.scripts.options %>'
connect:
livereload:
options:
base: './dist/'
middleware: require './middleware'
port: 0
# Copies directories and files from one location to another.
copy:
# Copies the contents of the temp directory, except views, to the dist directory.
# In 'dev' individual files are used.
dev:
files: [
cwd: './.temp/'
src: '**'
dest: './dist/'
expand: true
]
# Copies img directory to temp.
img:
files: [
cwd: './src/'
src: 'img/**/*.png'
dest: './.temp/'
expand: true
]
# Copies js files to the temp directory
js:
files: [
cwd: './src/'
src: 'scripts/**/*.js'
dest: './.temp/'
expand: true
,
cwd: './src/'
src: 'scripts/**/*.js'
dest: './dist_test/'
expand: true
]
# Copies select files from the temp directory to the dist directory.
# In 'prod' minified files are used along with img and libs.
# The dist artifacts contain only the files necessary to run the application.
prod:
files: [
cwd: './.temp/'
src: [
'img/**/*.png'
'scripts/libs/html5shiv-printshiv.js'
'scripts/libs/json2.js'
'scripts/scripts.min.js'
'scripts/scripts.min.js.map'
'scripts/scripts.min.js.src'
'styles/styles.min.css'
]
dest: './dist/'
expand: true
,
'./dist/index.html': './.temp/index.min.html'
]
# Task is run when the watched index.template file is modified.
index:
files: [
cwd: './.temp/'
src: 'index.html'
dest: './dist/'
expand: true
]
# Task is run when a watched script is modified.
scripts:
files: [
cwd: './.temp/'
src: 'scripts/**'
dest: './dist/'
expand: true
]
# Task is run when a watched style is modified.
styles:
files: [
cwd: './.temp/'
src: 'styles/**'
dest: './dist/'
expand: true
]
# Task is run when a watched view is modified.
views:
files: [
cwd: './.temp/'
src: 'views/**'
dest: './dist/'
expand: true
]
# Compresses png files
imagemin:
img:
files: [
cwd: './src/'
src: 'img/**/*.png'
dest: './.temp/'
expand: true
]
options:
optimizationLevel: 7
# Runs unit tests using karma
karma:
unit:
options:
autoWatch: true
browsers: ['Chrome']
colors: true
configFile: './karma.conf.js'
keepalive: true
port: 8081
reporters: ['progress']
runnerPort: 9100
singleRun: true
# Compile LESS (.less) files to CSS (.css).
less:
styles:
files:
'./.temp/styles/styles.css': './src/styles/styles.less'
# Minifiy index.html.
# Extra white space and comments will be removed.
# Content within <pre /> tags will be left unchanged.
# IE conditional comments will be left unchanged.
# As of this writing, the output is reduced by over 14%.
minifyHtml:
prod:
files:
'./.temp/index.min.html': './.temp/index.html'
# Gathers all views and creates a file to push views directly into the $templateCache
# This will produce a file with the following content.
#
# angular.module('app').run(['$templateCache', function ($templateCache) {
# $templateCache.put('/views/directives/tab.html', '<div class="tab-pane" ng-class="{active: selected}" ng-transclude></div>');
# $templateCache.put('/views/directives/tabs.html', '<div class="tabbable"> <ul class="nav nav-tabs"> <li ng-repeat="tab in tabs" ng-class="{active:tab.selected}"> <a href="http://localhost:3005/scripts/views.js" ng-click="select(tab)">{{tab.caption}}</a> </li> </ul> <div class="tab-content" ng-transclude></div> </div>');
# $templateCache.put('/views/people.html', '<ul ng-hide="!people.length"> <li class="row" ng-repeat="person in people | orderBy:\'name\'"> <a ng-href="#/people/{{person.id}}" ng-bind="person.name"></a> </li> </ul>');
# $templateCache.put('/views/repos.html', '<ul ng-hide="!repos.length"> <li ng-repeat="repo in repos | orderBy:\'pushed_at\':true"> <a ng-href="{{repo.url}}" ng-bind="repo.name" target="_blank"></a> <div ng-bind="repo.description"></div> </li> </ul>');
# $templateCache.put('/views/tweets.html', '<ul ng-hide="!tweets.length"> <li class="row" ng-repeat="tweet in tweets"> <div class="span1 thumbnail"> <img ng-src="{{tweet.profile_image_url}}"/> </div> <div class="span6"> <div> <b ng-bind="tweet.from_user_name"></b> <a ng-href="https://twitter.com/{{tweet.from_user}}" ng-bind="tweet.from_user | twitterfy" target="_blank"></a> </div> <div ng-bind="tweet.text"></div> </div> </li> </ul>');
# }]);
#
# This file is then included in the output automatically. AngularJS will use it instead of going to the file system for the views, saving requests. Notice that the view content is actually minified. :)
ngTemplateCache:
views:
files:
'./.temp/scripts/views.js': './.temp/views/**/*.html'
options:
trim: './.temp'
# Open the Express app in the default browser
open:
server:
url: 'http://localhost:<%= connect.livereload.options.port %>'
# Restart server when server sources have changed, notify all browsers on change.
regarde:
dist:
files: './dist/**'
tasks: 'livereload'
index:
files: './src/index.template'
tasks: [
'template:dev'
'copy:index'
]
scripts:
files: './src/scripts/**'
tasks: [
'coffee:scripts'
'copy:js'
'copy:scripts'
]
styles:
files: './src/styles/**/*.less'
tasks: [
'less'
'copy:styles'
]
views:
files: './src/views/**/*.template'
tasks: [
'template:views'
'copy:views'
]
# routes:
# files: 'routes.coffee'
# tasks: 'livereload'
# RequireJS optimizer configuration for both scripts and styles.
# This configuration is only used in the 'prod' build.
# The optimizer will scan the main file, walk the dependency tree, and write the output in dependent sequence to a single file.
# Since RequireJS is not being used outside of the main file or for dependency resolution (this is handled by AngularJS), RequireJS is not needed for final output and is excluded.
# RequireJS is still used for the 'dev' build.
# The main file is used only to establish the proper loading sequence.
requirejs:
scripts:
options:
baseUrl: './.temp/scripts/'
findNestedDependencies: true
logLevel: 0
mainConfigFile: './.temp/scripts/main.js'
name: 'main'
# Exclude main from the final output to avoid the dependency on RequireJS at runtime.
onBuildWrite: (moduleName, path, contents) ->
modulesToExclude = ['main']
shouldExcludeModule = modulesToExclude.indexOf(moduleName) >= 0
return '' if shouldExcludeModule
contents
optimize: 'uglify2'
out: './.temp/scripts/scripts.min.js'
preserveLicenseComments: false
generateSourceMaps: true
skipModuleInsertion: true
uglify:
# Let uglifier replace variables to further reduce file size.
no_mangle: false
styles:
options:
baseUrl: './.temp/styles/'
cssIn: './.temp/styles/styles.css'
logLevel: 0
optimizeCss: 'standard'
out: './.temp/styles/styles.min.css'
# Compile template files (.template) to HTML (.html).
#
# .template files are essentially html; however, you can take advantage of features provided by grunt such as underscore templating.
#
# The example below demonstrates the use of the environment configuration setting.
# In 'prod' the concatenated and minified scripts are used along with a QueryString parameter of the hash of the file contents to address browser caching.
# In environments other than 'prod' the individual files are used and loaded with RequireJS.
#
# <% if (config.environment === 'prod') { %>
# <script src="/scripts/scripts.min.js?v=<%= config.hash('./.temp/scripts/scripts.min.js') %>"></script>
# <% } else { %>
# <script data-main="/scripts/main.js" src="/scripts/libs/require.js"></script>
# <% } %>
template:
views:
files:
'./.temp/views/': './src/views/**/*.template'
dev:
files:
'./.temp/index.html': './src/index.template'
environment: 'dev'
prod:
files: '<%= template.dev.files %>'
environment: 'prod'
# Register grunt tasks supplied by grunt-contrib-*.
# Referenced in package.json.
# https://github.com/gruntjs/grunt-contrib
grunt.loadNpmTasks 'grunt-contrib-clean'
grunt.loadNpmTasks 'grunt-contrib-coffee'
grunt.loadNpmTasks 'grunt-contrib-connect'
grunt.loadNpmTasks 'grunt-contrib-copy'
grunt.loadNpmTasks 'grunt-contrib-imagemin'
grunt.loadNpmTasks 'grunt-contrib-less'
grunt.loadNpmTasks 'grunt-contrib-livereload'
grunt.loadNpmTasks 'grunt-contrib-requirejs'
# Express server + LiveReload
# grunt.loadNpmTasks 'grunt-express'
# Register grunt tasks supplied by grunt-hustler.
# Referenced in package.json.
# https://github.com/CaryLandholt/grunt-hustler
grunt.loadNpmTasks 'grunt-hustler'
# Register grunt tasks supplied by grunt-karma.
# Referenced in package.json.
# https://github.com/karma-runner/grunt-karma
grunt.loadNpmTasks 'grunt-karma'
# Open urls and files from a grunt task
# https://github.com/onehealth/grunt-open
grunt.loadNpmTasks 'grunt-open'
# Recommended watcher for LiveReload + Express.
grunt.loadNpmTasks 'grunt-regarde'
# Compiles the app with non-optimized build settings, places the build artifacts in the dist directory, and runs unit tests.
# Enter the following command at the command line to execute this build task:
# grunt test
grunt.registerTask 'test', [
'default'
'karma'
]
# Starts a web server
# Enter the following command at the command line to execute this task:
# grunt server
grunt.registerTask 'server', [
'livereload-start'
'connect'
'open'
'regarde'
]
# Compiles all CoffeeScript files in the project to JavaScript then deletes all CoffeeScript files.
# Used for those that desire plain old JavaScript.
# Enter the following command at the command line to execute this build task:
# grunt jslove
grunt.registerTask 'jslove', [
'coffee:jslove'
'clean:jslove'
]
# Compiles the app with non-optimized build settings and places the build artifacts in the dist directory.
# Enter the following command at the command line to execute this build task:
# grunt
grunt.registerTask 'default', [
'clean:working'
'coffee:scripts'
'copy:js'
'less'
'template:views'
'copy:img'
'template:dev'
'copy:dev'
]
# Compiles the app with non-optimized build settings, places the build artifacts in the dist directory, and watches for file changes.
# Enter the following command at the command line to execute this build task:
# grunt dev
grunt.registerTask 'dev', [
'default'
'regarde'
]
# Compiles the app with optimized build settings and places the build artifacts in the dist directory.
# Enter the following command at the command line to execute this build task:
# grunt prod
grunt.registerTask 'prod', [
'clean:working'
'coffee:scripts'
'copy:js'
'less'
'template:views'
'imagemin'
'ngTemplateCache'
'requirejs'
'template:prod'
'minifyHtml'
'copy:prod'
]