-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
44 lines (40 loc) · 1.24 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
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
uglify: {
bigImageViewer :{
options: {
preserveComments: 'some',
banner: '/*! <%= pkg.name %> - v<%= pkg.version %> - ' +
'<%= grunt.template.today("yyyy-mm-dd") %> */\n',
},
files: {
'dist/bigImageViewer.js': ['src/bigImageViewer.js']
}
}
},
concat: {
bigImageViewer: {
options: {
process: function(src, filepath) {
src = src.replace(/(^|\n)\/\/!import '(.+\.js)'/g, function(m, m1, m2) {
return m1 + grunt.file.read(m2);
});
src = src.replace(/(^|\n)\/\/!import '(.+\.tpl)'/g, function(m, m1, m2) {
var tpl = grunt.file.read(m2);
tpl = tpl.replace(/\n/g, '\\\r');
return m1 + "var _TPL_ = '" + tpl + "';";
});
return src;
}
},
files: {
'dist/bigImageViewer.min.js': ['dist/bigImageViewer.js']
}
}
}
});
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.registerTask('default', ['uglify', 'concat']);
};