-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
62 lines (56 loc) · 1.81 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
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
clean: {
public: {
// have to use public/* instead of just public because this dir is mounted into docker container.
// removing the whole dir leaves docker container in a messed up state.
src: ["dist/*"]
}
},
uglify: {
options: {
banner: '/* <%= pkg.name %> v<%= pkg.version %> <%= pkg.repository %> */\n'
},
pretty: {
options: {
beautify: true,
mangle: false,
compress: false
},
files: {
'dist/approximate.js': ['src/**/*.js']
}
},
minified: {
options: {
compress: {
drop_console: true
}
},
files: {
'dist/approximate.min.js': ['dist/approximate.js']
}
}
},
"regex-replace": {
"console.log": {
src: ['dist/approximate.js'],
actions: function() {
return [
{
name: 'remove console.log',
search: 'console.log',
replace: '// console.log'
}
]
}
}
}
});
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-regex-replace');
grunt.registerTask('dist', ['clean', 'uglify', 'regex-replace']);
};