-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gruntfile.js
53 lines (47 loc) · 1.3 KB
/
Gruntfile.js
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
/*
* pusher-gif
*
* Copyright(c) 2014 Nathan Walker <nathan.walker@infowrap.com>, Kirk Strobeck <kirk.strobeck@infowrap.com>
* MIT Licensed
*
*/
module.exports = function (grunt) {
'use strict';
require("matchdep").filterDev("grunt-*").forEach(grunt.loadNpmTasks);
var banner = '/*! <%= pkg.name %> (v<%= pkg.version %>) - Copyright: 2013, <%= pkg.authors %> <%= pkg.license %> */\n';
grunt.initConfig({
pkg: grunt.file.readJSON('bower.json'),
coffee: {
options: {
bare:true,
expand:true
},
dev: {
expand: true,
cwd: './',
src: ["*.coffee"],
dest: "./",
ext: ".js"
}
},
concat: {
options: {
banner: banner
},
dist: {
src: ['lib/glif.js', 'pusher-gif.js'],
dest: 'js/<%= pkg.name %>.js'
}
},
uglify: {
options: {
banner: banner
},
dist: {
src: 'js/<%= pkg.name %>.js',
dest: 'js/<%= pkg.name %>.min.js'
}
}
});
grunt.registerTask('default', ['coffee:dev', 'concat:dist', 'uglify:dist']);
};