-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.coffee
63 lines (47 loc) · 1.27 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
module.exports = (grunt) ->
grunt.task.loadTasks 'gruntcomponents/tasks'
grunt.task.loadNpmTasks 'grunt-contrib-coffee'
grunt.task.loadNpmTasks 'grunt-contrib-watch'
grunt.task.loadNpmTasks 'grunt-contrib-concat'
grunt.task.loadNpmTasks 'grunt-contrib-uglify'
grunt.initConfig
pkg: grunt.file.readJSON('package.json')
banner: """
/*! <%= pkg.name %> (<%= pkg.repository.url %>)
* lastupdate: <%= grunt.template.today("yyyy-mm-dd") %>
* version: <%= pkg.version %>
* author: <%= pkg.author %>
* License: MIT */
"""
growl:
ok:
title: 'COMPLETE!!'
msg: '\(^o^)/'
coffee:
touchdragv:
src: [ 'jquery.touchdragv.coffee' ]
dest: 'jquery.touchdragv.js'
concat:
banner:
options:
banner: '<%= banner %>'
src: [ '<%= coffee.touchdragv.dest %>' ]
dest: '<%= coffee.touchdragv.dest %>'
uglify:
options:
banner: '<%= banner %>'
touchdragv:
src: '<%= concat.banner.dest %>'
dest: 'jquery.touchdragv.min.js'
watch:
touchdragv:
files: '<%= coffee.touchdragv.src %>'
tasks: [
'default'
]
grunt.registerTask 'default', [
'coffee'
'concat'
'uglify'
'growl:ok'
]