-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdist.js
53 lines (38 loc) · 1.43 KB
/
dist.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
require('shelljs/global');
var path = require('path')
var package = require(path.join(__dirname, 'package.json'))
if (!which('7z')) {
echo('Sorry, this script requires 7z');
exit(1);
}
cd('public');
var inPath = '**'// folder to zip
var licenseFree = path.join(__dirname, 'license-free.txt')
var licensePremium = path.join(__dirname, 'license-premium.txt')
var sourcePremium = path.join(__dirname, 'styles/')
var outPathFree = path.join(__dirname, package.name + '_free_' + package.version.split('.').join('-') + '.zip') // name of output zip file
var outPathPremium = path.join(__dirname, package.name + '_premium_' + package.version.split('.').join('-') + '.zip') // name of output zip file
rm(outPathFree)
rm(outPathPremium)
// Run external tool synchronously for free version
if (exec('7z a "'+ outPathFree + '" "' + inPath +'"').code !== 0) {
echo('Error: 7z commit failed');
exit(1);
}
if (exec('7z a "'+ outPathFree + '" "' + licenseFree +'"').code !== 0) {
echo('Error: 7z commit failed');
exit(1);
}
// Run external tool synchronously for premium version
if (exec('7z a "'+ outPathPremium + '" "' + inPath +'"').code !== 0) {
echo('Error: 7z commit failed');
exit(1);
}
if (exec('7z a "'+ outPathPremium + '" "' + sourcePremium +'"').code !== 0) {
echo('Error: 7z commit failed');
exit(1);
}
if (exec('7z a "'+ outPathPremium + '" "' + licensePremium +'"').code !== 0) {
echo('Error: 7z commit failed');
exit(1);
}