-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.coffee
79 lines (67 loc) · 1.61 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
module.exports = (grunt) ->
grunt.task.loadNpmTasks 'grunt-contrib-concat'
grunt.task.loadNpmTasks 'grunt-contrib-uglify'
grunt.task.loadNpmTasks 'grunt-contrib-watch'
grunt.task.loadNpmTasks 'grunt-growl'
grunt.task.loadNpmTasks 'grunt-shell'
grunt.initConfig
pkg: grunt.file.readJSON('package.json')
banner: """
/*! <%= pkg.name %> (<%= pkg.repository.url %>)
* <%= pkg.description %>
* lastupdate: <%= grunt.template.today("yyyy-mm-dd") %>
* version: <%= pkg.version %>
* author: <%= pkg.author %>
* License: MIT
*/
"""
growl:
ok:
title: 'Grunt OK'
css:
title: 'CSS compiled'
js:
title: 'JS compiled'
build:
title: 'Build completed'
deploy:
title: 'Deploy completed'
concat:
main:
options:
banner: '<%= banner %>'
files: [
'dist/jquery.carousel.js': 'src/jquery.carousel.js'
]
uglify:
main:
options:
banner: '<%= banner %>'
files: [
'dist/jquery.carousel.min.js': 'src/jquery.carousel.js'
]
shell:
reload:
command: 'osascript -e \'tell application "Google Chrome" to reload active tab of window 1\''
watch:
html:
files: [ 'demos/**/*.html' ]
tasks: [
'shell:reload'
]
js:
files: [ 'src/**/*.js' ]
tasks: [
'concat:main'
'uglify:main'
'shell:reload'
'growl:js'
]
grunt.registerTask 'build', [
'concat'
'uglify'
'growl:build'
]
grunt.registerTask 'default', [
'build'
]