forked from hammerjs/jquery.hammer.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.coffee
101 lines (90 loc) · 2.52 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
module.exports = (grunt) ->
grunt.initConfig
pkg: grunt.file.readJSON 'package.json'
# meta options
meta:
banner: '
/*! <%= pkg.title || pkg.name %> - v<%= pkg.version %> - <%= grunt.template.today("yyyy-mm-dd") %>\n
* <%= pkg.homepage %>\n
*\n
* Copyright (c) <%= grunt.template.today("yyyy") %> <%= pkg.author.name %> <<%= pkg.author.email %>>;\n
* Licensed under the <%= _.pluck(pkg.licenses, "type").join(", ") %> license */'
# concat src files
concat:
options:
separator: '\n\n'
banner: '<%= meta.banner %>'
standalone:
src: [
'src/intro.js'
'src/plugin.js'
'src/outro.js']
dest: 'jquery.hammer.js'
full:
src: [
'hammer.js/hammer.js'
'jquery.hammer.js']
dest: 'jquery.hammer-full.js'
# minify the sourcecode
uglify:
options:
report: 'gzip'
banner: '<%= meta.banner %>'
standalone:
options:
sourceMap: 'jquery.hammer.min.map'
files:
'jquery.hammer.min.js': ['jquery.hammer.js']
full:
options:
sourceMap: 'jquery.hammer-full.min.map'
files:
'jquery.hammer-full.min.js': ['jquery.hammer-full.js']
# check for optimisations and errors
jshint:
options:
curly: true
expr: true
newcap: true
quotmark: 'single'
regexdash: true
trailing: true
undef: true
unused: true
maxerr: 100
eqnull: true
sub: false
browser: true
node: true
globals:
Hammer: true,
define: false
dist:
src: ['jquery.hammer.js']
# watch for changes
watch:
scripts:
files: ['src/*.js']
tasks: ['concat']
options:
interrupt: true
# simple node server
connect:
server:
options:
hostname: "0.0.0.0"
# tests
qunit:
all: ['tests/**/*.html']
# Load tasks
grunt.loadNpmTasks 'grunt-contrib-concat'
grunt.loadNpmTasks 'grunt-contrib-uglify'
grunt.loadNpmTasks 'grunt-contrib-watch'
grunt.loadNpmTasks 'grunt-contrib-jshint'
grunt.loadNpmTasks 'grunt-contrib-connect'
grunt.loadNpmTasks 'grunt-contrib-qunit'
# Default task(s).
grunt.registerTask 'default', ['connect','watch']
grunt.registerTask 'test', ['jshint','connect','qunit']
grunt.registerTask 'build', ['concat','uglify','test']
grunt.registerTask 'build-simple', ['concat','uglify','jshint']