-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathgrunt.js
106 lines (104 loc) · 2.6 KB
/
grunt.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
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
102
103
104
105
106
/*global module:false*/
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
pkg: '<json:coverphoto.jquery.json>',
meta: {
banner: '/*! <%= pkg.title || pkg.name %> - v<%= pkg.version %> - ' +
'<%= grunt.template.today("yyyy-mm-dd") %>\n' +
'<%= pkg.homepage ? "* " + pkg.homepage + "\n" : "" %>' +
'* Copyright (c) <%= grunt.template.today("yyyy") %> <%= pkg.author.name %>;' +
' Licensed <%= _.pluck(pkg.licenses, "type").join(", ") %> */'
},
concat: {
dist: {
src: ['<banner:meta.banner>', '<file_strip_banner:build/<%= pkg.name %>.js>'],
dest: 'dist/<%= pkg.name %>.js'
},
app: {
src: ['build/tmp/coverphoto-templates.js', 'build/tmp/coverphoto-plugin.js'],
dest: 'build/coverphoto.js'
}
},
min: {
dist: {
src: ['<banner:meta.banner>', '<config:concat.dist.dest>'],
dest: 'dist/<%= pkg.name %>.min.js'
}
},
qunit: {
files: ['test/**/*.html']
},
lint: {
files: ['grunt.js', 'test/**/*.js']
},
watch: {
files: ['<config:lint.files>','<config:coffeelint.app.files>','src/templates/**/*.jst','src/stylesheets/coverphoto.less'],
tasks: 'coffee jst concat:app clean:app less lint coffeelint qunit'
},
jshint: {
options: {
curly: true,
eqeqeq: true,
immed: true,
latedef: true,
newcap: true,
noarg: true,
sub: true,
undef: true,
boss: true,
eqnull: true,
browser: true
},
globals: {
jQuery: true
}
},
uglify: {},
coffee: {
compile: {
files: {
'build/tmp/coverphoto-plugin.js': ['<config:coffeelint.app.files>']
}
}
},
coffeelint: {
app: {
files: ['src/**/*.coffee']
}
},
jst: {
app: {
options: {
namespace: 'CoverPhotoTemplates'
},
files: {
'build/tmp/coverphoto-templates.js': ['src/templates/**/*.jst']
}
}
},
clean: {
app: {
src: ["build/tmp"]
}
},
less: {
app: {
files: {
'build/coverphoto.css': ['src/stylesheets/coverphoto.less']
}
}
},
copy: {
dist: {
files: {
"dist/coverphoto.css": "build/coverphoto.css"
}
}
}
});
// Default task.
grunt.registerTask('default', 'coffee jst concat:app clean:app less lint qunit concat:dist min copy');
grunt.loadNpmTasks('grunt-contrib');
grunt.loadNpmTasks('grunt-coffeelint');
};