forked from ezl/signature-pad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.coffee
executable file
·44 lines (38 loc) · 1.01 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
module.exports = (grunt) ->
banner = [
'/**!'
' * <%= pkg.description %>'
' * @project <%= pkg.name %>'
' * @author <%= pkg.author.name %> <<%= pkg.author.email %>>'
' * @link <%= pkg.homepage %>'
' * @link <%= pkg.repository.url %>'
' * @copyright <%= grunt.template.today("yyyy") %> <%= pkg.author.name %>'
' * @license <%= pkg.license %>'
' * @version <%= pkg.version %>'
' */\n'
]
grunt.initConfig
pkg: grunt.file.readJSON('package.json')
jshint:
options:
jshintrc: '.jshintrc'
files: [
'jquery.signaturepad.js'
]
uglify:
minifiy:
options:
banner: banner.join('\n')
mangle: false
compress: true
preserveComments: 'some'
files:
'jquery.signaturepad.min.js': [
'jquery.signaturepad.js'
]
grunt.loadNpmTasks 'grunt-contrib-jshint'
grunt.loadNpmTasks 'grunt-contrib-uglify'
grunt.registerTask 'default', [
'jshint'
'uglify'
]