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
|
diff --git a/commands/release.js b/commands/release.js
index 4405eaa1d..979269fdb 100644
--- a/commands/release.js
+++ b/commands/release.js
@@ -616,10 +616,7 @@ exports.run = (argv, done) => {
task('create module cache', createModuleCache),
task('create packaged styles', createPackagedStyles),
task('remove development files', removeDevelopmentFiles),
- !noAsar && task('create application asar', createApplicationAsar),
- !skipInstaller && task('create branded installer', createBrandedInstaller),
- task('create application zip', createApplicationZip),
- task('store build configuration as json', writeConfigToJson)
+ !noAsar && task('create application asar', createApplicationAsar)
].filter(Boolean));
return async.series(tasks, (_err) => {
@@ -633,9 +630,5 @@ exports.run = (argv, done) => {
exports.handler = (argv) => {
exports.run(argv, (_err, CONFIG) => {
cli.abortIfError(_err);
- cli.ok(`${CONFIG.assets.length} assets successfully built`);
- CONFIG.assets.map(function(asset) {
- cli.info(asset.path);
- });
});
};
diff --git a/lib/target.js b/lib/target.js
index 062285659..668e2e57b 100644
--- a/lib/target.js
+++ b/lib/target.js
@@ -4,8 +4,6 @@ const semver = require('semver');
const path = require('path');
const normalizePkg = require('normalize-package-data');
const parseGitHubRepoURL = require('parse-github-repo-url');
-const ffmpegAfterExtract = require('electron-packager-plugin-non-proprietary-codecs-ffmpeg')
- .default;
const windowsInstallerVersion = require('./windows-installer-version');
const debug = require('debug')('hadron-build:target');
@@ -183,8 +181,7 @@ class Target {
platform: this.platform,
arch: this.arch,
electronVersion: this.electronVersion,
- sign: null,
- afterExtract: [ffmpegAfterExtract]
+ sign: null
};
if (this.platform === 'win32') {
|