-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
85 lines (82 loc) · 1.84 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
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
/* global module:false */
var banner = '/* \n * <%= pkg.name %>: <%= pkg.description %> \n * v<%= pkg.version %> \n * \n * By <%= pkg.authors %>, <%= pkg.homepage %> \n * <%= pkg.license %> Licence \n * \n */\n';
module.exports = function(grunt) {
// Project configuration
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
uglify: {
options: {
banner: banner,
report: 'min',
beautify: false,
compress: true,
mangle: true
},
min: {
files: [{
cwd: 'src/',
src: ['*.js', '!*.min.js'],
dest: 'dist/',
expand: true,
flatten: true
}]
}
},
cssmin: {
options: {
banner: banner
},
combine: {
files: [{
cwd: 'src/',
src: ['*.css', '!*.min.css'],
dest: 'dist/',
expand: true,
ext: '.css'
}]
}
},
jshint: {
all: ['src/*.js']
},
copy: {
libs_perform_list: {
expand: true,
cwd: 'dist/',
src: '*',
dest: 'examples/libs/perform-list/'
},
libs_iscroll: {
expand: true,
cwd: 'bower_components/iscroll/build',
src: '*',
dest: 'examples/libs/iscroll/'
},
libs_js_dom_tools: {
expand: true,
cwd: 'bower_components/js-dom-tools/src/',
src: 'js-dom-tools.js',
dest: 'examples/libs/js-dom-tools/'
},
libs_pubsub_js: {
expand: true,
cwd: 'bower_components/pubsub-js/src/',
src: 'pubsub.js',
dest: 'examples/libs/pubsub-js/'
},
libs_requirejs: {
expand: true,
cwd: 'bower_components/requirejs/',
src: 'require.js',
dest: 'examples/libs/require/'
}
}
});
// Dependencies
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-copy');
// Default task
grunt.registerTask('default', ['uglify', 'cssmin', 'jshint', 'copy']);
};