This repository has been archived by the owner on Dec 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 491
/
release_osx.js
147 lines (123 loc) · 4.32 KB
/
release_osx.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
137
138
139
140
141
142
143
144
145
146
147
'use strict';
var Q = require('q');
var gulpUtil = require('gulp-util');
var jetpack = require('fs-jetpack');
var asar = require('asar');
var utils = require('./utils');
var child_process = require('child_process');
var projectDir;
var releasesDir;
var tmpDir;
var finalAppDir;
var manifest;
var init = function () {
projectDir = jetpack;
tmpDir = projectDir.dir('./tmp', { empty: true });
releasesDir = projectDir.dir('./releases');
manifest = projectDir.read('app/package.json', 'json');
finalAppDir = tmpDir.cwd(manifest.productName + '.app');
return Q();
};
var copyRuntime = function () {
return projectDir.copyAsync('node_modules/electron-prebuilt/dist/Electron.app', finalAppDir.path());
};
var cleanupRuntime = function () {
finalAppDir.remove('Contents/Resources/default_app');
finalAppDir.remove('Contents/Resources/atom.icns');
return Q();
};
var packageBuiltApp = function () {
var deferred = Q.defer();
asar.createPackage(projectDir.path('build'), finalAppDir.path('Contents/Resources/app.asar'), function () {
deferred.resolve();
});
return deferred.promise;
};
var finalize = function () {
// Prepare main Info.plist
var info = projectDir.read('resources/osx/Info.plist');
info = utils.replace(info, {
productName: manifest.productName,
identifier: manifest.identifier,
version: manifest.version,
copyright: manifest.copyright
});
finalAppDir.write('Contents/Info.plist', info);
// Prepare Info.plist of Helper apps
[' EH', ' NP', ''].forEach(function (helper_suffix) {
info = projectDir.read('resources/osx/helper_apps/Info' + helper_suffix + '.plist');
info = utils.replace(info, {
productName: manifest.productName,
identifier: manifest.identifier
});
finalAppDir.write('Contents/Frameworks/Electron Helper' + helper_suffix + '.app/Contents/Info.plist', info);
});
// Copy icon
projectDir.copy('resources/osx/icon.icns', finalAppDir.path('Contents/Resources/icon.icns'));
return Q();
};
var renameApp = function () {
// Rename helpers
[' Helper EH', ' Helper NP', ' Helper'].forEach(function (helper_suffix) {
finalAppDir.rename('Contents/Frameworks/Electron' + helper_suffix + '.app/Contents/MacOS/Electron' + helper_suffix, manifest.productName + helper_suffix );
finalAppDir.rename('Contents/Frameworks/Electron' + helper_suffix + '.app', manifest.productName + helper_suffix + '.app');
});
// Rename application
finalAppDir.rename('Contents/MacOS/Electron', manifest.productName);
return Q();
};
var signApp = function () {
var identity = utils.getSigningId();
if (identity) {
var cmd = 'codesign --deep --force --sign "' + identity + '" "' + finalAppDir.path() + '"';
gulpUtil.log('Signing with:', cmd);
return Q.nfcall(child_process.exec, cmd);
} else {
return Q();
}
};
var packToDmgFile = function () {
var deferred = Q.defer();
var appdmg = require('appdmg');
var dmgName = manifest.name + '_' + manifest.version + '.dmg';
// Prepare appdmg config
var dmgManifest = projectDir.read('resources/osx/appdmg.json');
dmgManifest = utils.replace(dmgManifest, {
productName: manifest.productName,
appPath: finalAppDir.path(),
dmgIcon: projectDir.path("resources/osx/dmg-icon.icns"),
dmgBackground: projectDir.path("resources/osx/dmg-background.png")
});
tmpDir.write('appdmg.json', dmgManifest);
// Delete DMG file with this name if already exists
releasesDir.remove(dmgName);
gulpUtil.log('Packaging to DMG file...');
var readyDmgPath = releasesDir.path(dmgName);
appdmg({
source: tmpDir.path('appdmg.json'),
target: readyDmgPath
})
.on('error', function (err) {
console.error(err);
})
.on('finish', function () {
gulpUtil.log('DMG file ready!', readyDmgPath);
deferred.resolve();
});
return deferred.promise;
};
var cleanClutter = function () {
return tmpDir.removeAsync('.');
};
module.exports = function () {
return init()
.then(copyRuntime)
.then(cleanupRuntime)
.then(packageBuiltApp)
.then(finalize)
.then(renameApp)
.then(signApp)
.then(packToDmgFile)
.then(cleanClutter)
.catch(console.error);
};