-
Notifications
You must be signed in to change notification settings - Fork 14
/
Gruntfile.coffee
60 lines (50 loc) · 1.32 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
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^)/'
concat:
banner:
options:
banner: '<%= banner %>'
src: [ '<%= coffee.main.dest %>' ]
dest: '<%= coffee.main.dest %>'
watch:
files: ["**/*.coffee"]
tasks: ["default"]
uglify:
options:
banner: '<%= banner %>'
main:
src: "jquery.imgloader.js"
dest: "jquery.imgloader.min.js"
coffee:
main:
src: ["jquery.imgloader.coffee"]
dest: "jquery.imgloader.js"
demo2:
src: ["demo2/script.coffee"]
dest: "demo2/script.js"
test:
src: ["qunit/test.coffee"]
dest: "qunit/test.js"
grunt.registerTask "default", [
"coffee"
"concat"
"uglify"
"growl"
]