-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gruntfile.js
101 lines (101 loc) · 3.04 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
module.exports = function(grunt) {
require('load-grunt-tasks')(grunt);
var pkg = require('./package.json');
grunt.registerTask('build', ['clean', 'copy', 'uglify']);
grunt.registerTask('control', ['build', 'buildcontrol']);
grunt.registerTask('default', ['build']);
grunt.initConfig({
buildcontrol: {
options: {
dir: 'build',
commit: true,
push: true,
message:
'Built %sourceName% from commit %sourceCommit% on branch %sourceBranch%',
tag: pkg.version
},
build: {
options: {
remote: '../',
branch: 'build'
}
}
},
clean: {
build: ['build/**/*', '!build/.git/**/*']
},
copy: {
src: {
src: 'src/stringformat.js',
dest: 'build/sffjs.js',
options: {
process: function(content) {
return content
.replace(/%VERSION%/g, pkg.version)
.replace(/\r/g, '');
}
}
},
pkgjson: {
files: [
{
src: 'package.json',
dest: 'build/'
}
],
options: {
process: function(content) {
var obj = JSON.parse(content);
delete obj.private;
delete obj.devDependencies;
delete obj.scripts;
return JSON.stringify(obj);
}
}
},
extras: {
files: [
{
src: [
'bower.json',
'readme.md',
'LICENSE',
'changelog.txt'
],
dest: 'build/'
}
],
options: {
process: function(content) {
return content.replace(/\r/g, '');
}
}
},
options: {
timestamp: true
}
},
uglify: {
build: {
files: [
{
dest: 'build/sffjs.min.js',
src: 'build/sffjs.js'
},
{
expand: true,
cwd: 'src',
src: 'cultures/*.js',
dest: 'build/'
}
],
options: {
compress: {
pure_getters: true,
passes: 3
}
}
}
}
});
};