forked from AschPlatform/asch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
101 lines (91 loc) · 3.01 KB
/
gulpfile.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
var path = require('path');
var util = require('util');
var moment = require('moment');
var gulp = require('gulp');
var shell = require('gulp-shell');
var replace = require('gulp-replace');
var webpack = require('webpack-stream');
var nodeExternals = require('webpack-node-externals');
var package = require('./package');
var format = util.format;
var buildTime = moment().format('HH:mm:ss DD/MM/YYYY');
function build(osVersion, netVersion) {
var dir = 'asch-' + osVersion + '-' + package.version + '-' + netVersion;
var fullpath = path.join(__dirname, 'build', dir);
var cmds = [];
cmds.push(format('cd %s && mkdir -p public dapps tmp logs bin', fullpath));
cmds.push(format('cp -r package.json aschd init proto %s', fullpath));
if (netVersion != 'localnet') {
cmds.push(format('sed -i "s/testnet/%s/g" %s/aschd', netVersion, fullpath));
cmds.push(format('cp config-%s.json %s/config.json', netVersion, fullpath));
cmds.push(format('cp genesisBlock-%s.json %s/genesisBlock.json', netVersion, fullpath));
} else {
cmds.push(format('cp config.json %s/', fullpath));
cmds.push(format('cp genesisBlock.json %s/', fullpath));
cmds.push(format('cp third_party/sqlite3.exe %s/', fullpath));
}
if (osVersion == 'linux') {
cmds.push(format('cp `which node` %s/bin/', fullpath));
}
cmds.push(format('cp -r public/dist %s/public/', fullpath));
cmds.push(format('cd %s && npm install --production', fullpath));
cmds.push(format('cd %s/.. && tar zcf %s.tar.gz %s', fullpath, dir, dir));
return gulp.src('app.js')
.pipe(webpack({
output: {
filename: 'app.js'
},
target: 'node',
context: __dirname,
node: {
__filename: true,
__dirname: true
},
externals: [nodeExternals()]
}))
.pipe(replace('localnet', netVersion))
.pipe(replace('development', buildTime))
.pipe(gulp.dest(fullpath))
.pipe(shell(cmds));
}
function buildSource(netVersion) {
var dir = 'asch-' + 'linux' + '-' + package.version + '-' + netVersion;
var fullpath = path.join(__dirname, 'build', dir);
return gulp.src('app.js')
.pipe(webpack({
output: {
filename: 'app.js'
},
target: 'node',
context: __dirname,
node: {
__filename: true,
__dirname: true
},
externals: [nodeExternals()]
}))
.pipe(replace('localnet', netVersion))
.pipe(replace('development', buildTime))
.pipe(gulp.dest(fullpath));
}
gulp.task('build-src-main', function () {
return buildSource('mainnet');
})
gulp.task('win64-build-local', function () {
return build('win64', 'localnet');
});
gulp.task('linux-build-local', function () {
return build('linux', 'localnet');
});
gulp.task('win64-build-test', function () {
return build('win64', 'testnet');
});
gulp.task('linux-build-test', function () {
return build('linux', 'testnet');
});
gulp.task('win64-build-main', function () {
return build('win64', 'mainnet');
});
gulp.task('linux-build-main', function () {
return build('linux', 'mainnet');
});