-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGruntfile.js
51 lines (46 loc) · 1.46 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
/* Gruntfile */
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
uglify: {
options: {
mangle: true,
compress: {
negate_iife: false
}
},
normal: {
files: {
'<%= pkg.name %>.min.js': ['<%= pkg.name %>.js'],
'<%= pkg.name %>_ie9.min.js': ['<%= pkg.name %>.ie9.js']
}
// src: '<%= pkg.name %>.js',
// dest: '<%= pkg.name %>.min.js'
}
},
copy: {
main: {
src: 'index.src.html',
dest: 'index.html'
}
},
'string-replace': {
'index.html': 'index.html',
options: {
replacements: [{
pattern: /\{SCRIPT\}/,
replacement: '<%= grunt.file.read("stylist.min.js") %>'
},
{
pattern: /\{SCRIPT_IE9\}/,
replacement: '<%= grunt.file.read("stylist_ie9.min.js") %>'
}
]
}
}
});
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-string-replace');
grunt.registerTask('default', ['uglify', 'copy', 'string-replace']);
}