Welcome to mirror list, hosted at ThFree Co, Russian Federation.

build-release.js « scripts - github.com/jsxc/jsxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 503ddc1525d02c399e84a100b25616a7658c9d53 (plain)
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
require('colors').setTheme({
   verbose: 'cyan',
   warn: 'yellow',
   error: 'red',
});

const fs = require('fs');
const path = require('path');
const execa = require('execa');
const args = {
   mode: 'production',
   release: process.argv.indexOf('--stable') > 1,
};
const config = require('../webpack.config.js')(undefined, args);
const version = JSON.parse(config.plugins[config.plugins.length - 2].definitions['__VERSION__']);

createRelease().catch(err => {
	console.log(`✘ ${err.toString()}`.error);
});

async function createRelease() {
   console.log(`I'm now building JSXC version ${version}.`.verbose);

   await execa('yarn', ['checking']);
   console.log('✔ all code checks passed'.green);

   await execa('yarn', ['test']);
   console.log('✔ all tests passed'.green);

   await createBuild();
   console.log('✔ build created'.green);

   let filePath = await createArchive('jsxc-' + version);

   await createGPGSignature(filePath);
   console.log(`✔ created detached signature: ${path.basename(filePath)}`.green);

   await createGPGArmorSignature(filePath);
   console.log(`✔ created detached signature: ${path.basename(filePath)}.asc`.green);
}

function createBuild() {
   const compiler = require('webpack')(config);

   return new Promise(resolve => {
      compiler.run((err, stats) => {
         if (err) {
            console.error(err);
            return;
         }

         console.log(stats.toString('minimal'));

         resolve();
      });
   });
}

function createArchive(fileBaseName) {
   let fileName = `${fileBaseName}.tar.gz`;
   let filePath = path.normalize(__dirname + `/../archives/${fileName}`);
   let output = fs.createWriteStream(filePath);
   let archive = require('archiver')('tar', {
      gzip: true,
   });

   archive.on('warning', function (err) {
      if (err.code === 'ENOENT') {
         console.warn('Archive warning: '.warn, err);
      } else {
         throw err;
      }
   });

   archive.on('error', function (err) {
      throw err;
   });

   archive.pipe(output);

   archive.directory('dist/', 'jsxc');

   return new Promise(resolve => {
      output.on('close', function () {
         console.log(`✔ wrote ${archive.pointer()} bytes to ${fileName}`.green);

         resolve(filePath);
      });

      archive.finalize();
   });
}

function createGPGSignature(filePath) {
   return execa('gpg', ['--yes', '--detach-sign', filePath]);
}

function createGPGArmorSignature(filePath) {
   return execa('gpg', ['--yes', '--detach-sign', '--armor', filePath]);
}