forked from xilibi2003/learnblockchain
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathGruntfile.js
136 lines (122 loc) · 4.53 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
'use strict';
module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-htmlmin');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-exec');
var SOURCE_DIR = 'public'
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
clean: {
tmp: ['tmp/**/*'],
deploy: [SOURCE_DIR + '/**/*']
},
exec: {
buildContent: {
cmd: "gitbook build",
},
// 部署代码到又拍云
deployToUpyun:{
cmd:function(){
//防止错误,不得为空
var storagepath=process.env.UPX_PATH;
if (!storagepath || storagepath===""){
return 'echo "empty path " && exit 1';
}
//将多个内容拼接到多条命令执行
return [
['upx','login',process.env.UPX_BUCKET,process.env.UPX_OP,process.env.UPX_PWD].join(" "),
['upx','-q','sync','-w 10',SOURCE_DIR,storagepath].join(" ")
].join('&&');
},
}
},
htmlmin: { // Task
dist: { // Target
options: { // Target options
removeComments: true,
collapseWhitespace: true,
minifyCSS: true,
},
files: [
{
expand: true, // Enable dynamic expansion.
cwd: SOURCE_DIR, // Src matches are relative to this path.
src: ['**/*.html'], // Actual pattern(s) to match.
dest: SOURCE_DIR, // Destination path prefix.
}],
}
},
cssmin: {
options: {
keepSpecialComments: 0,
},
target: {
files: [
{
expand: true, // Enable dynamic expansion.
cwd: SOURCE_DIR, // Src matches are relative to this path.
src: ['**/*.css'], // Actual pattern(s) to match.
dest: SOURCE_DIR, // Destination path prefix.
}],
}
},
uglify: {
my_target: {
files: [{
expand: true,
cwd: SOURCE_DIR+"/gitbook",
src: '**/*.js',
dest: SOURCE_DIR+"/gitbook",
rename: function (dst, src) {
return src;
}
}]
}
},
});
// get a formatted commit message to review changes from the commit log
// github will turn some of these into clickable links
function getDeployMessage() {
var ret = '\n\n';
if (process.env.TRAVIS !== 'true') {
ret += 'missing env vars for travis-ci';
return ret;
}
ret += 'branch: ' + process.env.TRAVIS_BRANCH + '\n';
ret += 'SHA: ' + process.env.TRAVIS_COMMIT + '\n';
ret += 'range SHA: ' + process.env.TRAVIS_COMMIT_RANGE + '\n';
ret += 'build id: ' + process.env.TRAVIS_BUILD_ID + '\n';
ret += 'build number: ' + process.env.TRAVIS_BUILD_NUMBER + '\n';
return ret;
}
grunt.registerTask('check-deploy', function () {
// need this
this.requires(['build']);
// only deploy under these conditions
if (process.env.TRAVIS === 'true' && process.env.TRAVIS_SECURE_ENV_VARS === 'true' && process.env.TRAVIS_PULL_REQUEST === 'false') {
grunt.log.writeln('executing deployment');
// queue deploy
grunt.task.run('exec:deployToUpyun');
}
else {
grunt.log.writeln('skipped deployment');
}
});
grunt.registerTask('prep', 'Clean-up project', [
'clean',
]);
grunt.registerTask('build', 'Rebuild locally', [
'prep',
"exec:buildContent",
'htmlmin:dist',
'cssmin',
]);
grunt.registerTask('deploy', 'Deploy from Travis', [
'build',
'exec:deployToUpyun'
]);
// per convention set a test task
grunt.registerTask('test', ['build']);
grunt.registerTask('default', ['test']);
};