This repository has been archived by the owner on Apr 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Gruntfile.js
77 lines (65 loc) · 2.08 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
/**
* 注意文件编码一定要统一为GBK
* vim下使用euc-cn就行了
*/
module.exports = function(grunt) {
var fs = require('fs');
//文件编码
grunt.file.defaultEncoding = 'utf-8';
grunt.initConfig({
jshint: {
all: {
src: ['src/**/*.js']
},
options: grunt.file.readJSON('.jshintrc')
},
copy: {
options: {
processContent: function(content, srcPath) {
//替换时间戳
//替换acookie.js
return content.replace(/{timestamp}/g, grunt.template.today("yyyymmddhhMMss")).replace(/{version}/, grunt.file.readJSON('package.json').version);
}
},
files: {
expand: true, //为了让复制前不出现src
cwd: 'src',
src: ['**/*.js'],
dest: 'dist'
}
},
uglify: {
kslite: {
files: {
'dist/kslite-min.js': ['dist/kslite.js']
}
}
},
checksize: {
files: 'dist/kslite-min.js'
},
watch: {
files: ['<%= jshint.all.src %>'],
tasks: ['jshint', 'copy', 'uglify', 'checksize']
}
});
grunt.registerMultiTask('checksize', 'check the minisize kslite size', function() {
var done = this.async();
var files = this.filesSrc;
fs.stat(files[0], function(err, info) {
grunt.log.writeln('current size is : ' + info.size / 1024);
if (info.size / 1024 > 5) {
grunt.log.error('The minify kslite must lite then 5k.');
done(false);
} else {
done(true);
}
});
});
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-karma');
grunt.registerTask('default', ['watch']);
};