This repository has been archived by the owner on Nov 27, 2018. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 91
/
grunt.js
132 lines (126 loc) · 3.82 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/*global module:false*/
module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib');
//grunt.loadTasks('tasks/');
// Project configuration.
grunt.initConfig({
pkg: '<json:package.json>',
dist: 'dist',
dist_source: '<%= dist %>/bootstrap-editable',
meta: {
banner: '/*! <%= pkg.title || pkg.name %> - v<%= pkg.version %> \n' +
'* <%= pkg.description %>\n' +
'* <%= pkg.homepage %>\n' +
'* Copyright (c) <%= grunt.template.today("yyyy") %> <%= pkg.author.name %>;' +
' Licensed <%= _.pluck(pkg.licenses, "type").join(", ") %> */'
},
clean: ['<config:dist>'],
concat: {
dist_js: {
src: ['<banner:meta.banner>', '<file_strip_banner:src/js/bootstrap-editable.js>', '<file_strip_banner:src/js/bootstrap-datepicker.js>'],
dest: '<%= dist_source %>/js/<%= pkg.name %>.js'
},
dist_css: {
src: ['<banner:meta.banner>', '<file_strip_banner:src/css/bootstrap-editable.css>', '<file_strip_banner:src/css/datepicker.css>'],
dest: '<%= dist_source %>/css/<%= pkg.name %>.css'
}
},
/* disable that task as it's better to write changelog manualy
changelog: {
user: 'vitalets',
repo: 'bootstrap-editable',
dest: 'CHANGELOG.txt'
},
*/
min: {
dist: {
src: ['<banner:meta.banner>', '<config:concat.dist_js.dest>'],
dest: '<%= dist_source %>/js/<%= pkg.name %>.min.js'
}
},
qunit: {
files: ['test/index.html']
},
lint: {
//TODO: lint tests files
//files: ['grunt.js', 'src/js/*.js', 'test/**/*.js']
// files: ['grunt.js', 'src/js/*.js']
files: ['grunt.js', 'src/js/bootstrap-editable.js']
},
watch: {
files: '<config:lint.files>',
tasks: 'lint 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,
evil: false //allow eval
},
globals: {
jQuery: true
}
},
copy: {
dist: {
files: {
'<%= dist_source %>/img' : 'src/img/*',
'<%= dist_source %>/js/locales' : 'src/js/locales/*',
'<%= dist_source %>': ['LICENSE-GPL', 'LICENSE-MIT', 'README.md', 'CHANGELOG.txt']
},
options: {
flatten: true
}
},
libs: {
files: {
'<%= dist %>/libs': ['libs/bootstrap/**', 'libs/jquery/**']
},
options: {
basePath: 'libs',
flatten: false
}
}
},
//compress does not work properly for MAC OS (see https://github.com/vitalets/bootstrap-editable/issues/19)
//zip will be created manually
/*
compress: {
zip: {
options: {
mode: "zip",
//TODO: unfortunatly here <%= dist_source %> and <config:dist_source> does not work
basePath: "dist"
},
files: {
"<%= dist %>/bootstrap-editable-v<%= pkg.version %>.zip": ["<%= dist_source %>/ **", "<%= dist %>/libs/ **"]
}
},
tgz: {
options: {
mode: "tgz",
basePath: "dist"
},
files: {
"<%= dist %>/bootstrap-editable-v<%= pkg.version %>.tar.gz": ["<%= dist_source %>/ **", "<%= dist %>/libs/ **"]
}
}
},
*/
uglify: {}
});
// Default task.
grunt.registerTask('default', 'lint qunit');
// build
grunt.registerTask('build', 'clean lint qunit concat min copy');
//to run particular task use ":", e.g. copy:libs
};