-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
225 lines (205 loc) · 6.14 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
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
'use strict';
module.exports = function(grunt) {
// config tasks
grunt.initConfig({
// read package informations
pkg : grunt.file.readJSON('package.json'),
banner: '/*!\n' +
' * <%= pkg.name %> v<%= pkg.version %> (<%= pkg.homepage %>)\n' +
' * Copyright 2014-<%= grunt.template.today("yyyy") %> <%= pkg.author %>\n' +
' * Licensed under <%= pkg.license %>\n' +
' */\n' ,
// jshint
jshint: {
options: {
jshintrc: 'js/.jshintrc'
},
beforeconcat: ['Gruntfile.js', 'js/**/*.js', 'test/**/*.js'],
afterconcat: ['dist/js/<%= pkg.name %>.js']
},
// concat all scripts
concat: {
options: {
// Replace all 'use strict' statements in the code with a single one at the top
banner: "<%= banner %>\n'use strict';\n",
process: function(src, filepath) {
return '// Source: ' + filepath + '\n' + src.replace(/(^|\n)[ \t]*('use strict'|"use strict");?\s*/g, '$1');
}
},
dist: {
src: ['js/**/*.js'],
dest: 'dist/js/<%= pkg.name %>.js'
}
},
// minified all scripts
uglify: {
options: {
banner: '/*! <%= pkg.name %> <%= grunt.template.today("dd-mm-yyyy") %> */\n'
},
dist: {
files: {
'dist/js/<%= pkg.name %>.min.js': ['<%= concat.dist.dest %>']
}
}
},
// compile less
less: {
dist: {
options: {
sourceMap: true,
outputSourceFiles: true,
sourceMapURL: '<%= pkg.name %>.css.map',
sourceMapFilename: 'dist/css/<%= pkg.name %>.css.map'
},
src: 'less/main.less',
dest: 'dist/css/<%= pkg.name %>.css'
}
},
// linting css
csslint: {
options: {
csslintrc: 'less/.csslintrc'
},
dist: [
'dist/css/<%= pkg.name %>.css'
]
},
// minified css
cssmin: {
options: {
compatibility: 'ie8',
keepSpecialComments: '*',
advanced: false
},
dist: {
src: 'dist/css/<%= pkg.name %>.css',
dest: 'dist/css/<%= pkg.name %>.min.css'
}
},
copy: {
fonts: {
expand: true,
src: 'fonts/*',
dest: 'dist/'
},
docs: {
expand: true,
cwd: 'dist/',
src: [
'**/*'
],
dest: 'docs/dist/'
}
},
jekyll: {
options: {
src: 'docs',
dest: 'docs/_site',
config: '_config.yml'
},
docsDev: {
options: {
serve: true,
watch: true,
port: 4190
}
},
docs: {}
},
// file watcher
watch: {
docs: {
files : [
'less/**/*.less',
'js/**/*.js'
],
tasks: ['dist','copy:docs']
},
js: {
files : ['js/**/*.js'],
tasks: ['js-dist','copy:docs']
},
css: {
files : ['less/**/*.less'],
tasks: ['css-dist','copy:docs']
}
},
// bower installer for docs
bower: {
docs: {
options: {
targetDir: './docs/lib',
layout: 'byType',
install: true,
verbose: true,
cleanTargetDir: false,
cleanBowerDir: false
}
}
},
// concurrent process
concurrent: {
docs: {
tasks: [
'docs-deploy',
'watch:js',
'watch:css'
],
options: {
logConcurrentOutput: true
}
}
}
});
// load tasks
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks('grunt-contrib-csslint');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-jekyll');
grunt.loadNpmTasks('grunt-concurrent');
grunt.loadNpmTasks('grunt-bower-task');
// register tasks
// JS test
grunt.registerTask('js-test', [
'jshint:beforeconcat',
'concat:dist',
'jshint:afterconcat'
]);
// JS Deploy
grunt.registerTask('js-dist', [
'jshint:beforeconcat',
'concat:dist',
'jshint:afterconcat',
'uglify:dist'
]);
// CSS test
grunt.registerTask('css-test', [
'less:dist',
'copy:fonts',
'csslint:dist'
]);
// CSS deploy
grunt.registerTask('css-dist', [
'less:dist',
'copy:fonts',
'csslint:dist',
'cssmin:dist'
]);
// Overall Test
grunt.registerTask('test',['js-test','css-test']);
// Overall Dist
grunt.registerTask('dist',['js-dist','css-dist']);
grunt.registerTask('build',['dist']);
// Docs
grunt.registerTask('docs-deploy',['dist','copy:docs','bower:docs','jekyll:docsDev']);
grunt.registerTask('docs-dev',['concurrent:docs']);
grunt.registerTask('serve',['concurrent:docs']);
grunt.registerTask('docs',['dist','copy:docs','bower:docs','jekyll:docs']);
// default
grunt.registerTask('default',['dist']);
};