-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpublish.js
71 lines (61 loc) · 2.07 KB
/
publish.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
/**
* Faz o build publicação no repositorio e tag do github.
*
* O versionamento do package.json não é feito automaticamente, afim de permitir um maior controle sobre o deploy.
*
* Os passos para usar esses script são:
*
* 1 - Após fazer alterações de código, conduzir normalmente com os commits no git
* 2 - No momento de fazer a publicação de uma versão, no terminal:
* a) git add --all
* b) git commit -m "Mensagem das alterações feitas"
* c) node ./publish.js
*/
const fs = require('fs');
const cpExec = require('child_process').exec;
function exec(command, callback) {
callback = callback || function () {
};
return new Promise(function (accept, reject) {
console.log('[' + command + ']');
const com = cpExec(command);
com.stdout.on('data', function (data) {
console.log(data.toString());
});
com.stderr.on('data', function (data) {
console.error(data.toString());
});
com.on('exit', function (code, signal) {
if (signal) {
reject({
code: code,
signal: signal
});
callback(code);
} else {
accept({
code: code,
signal: signal
});
callback(null, signal);
}
});
});
}
if (fs.existsSync('./index.js')) {
fs.unlinkSync('./index.js');
}
if (fs.existsSync('./index.d.ts')) {
fs.unlinkSync('./index.d.ts');
}
var package = JSON.parse(fs.readFileSync(__dirname + '/package.json'));
exec('npm run-script build')
.then(exec.bind(undefined, 'npm publish', null))
.then(exec.bind(undefined, 'git add --all', null))
.then(exec.bind(undefined, 'git commit -m "Publicação da versão v' + package.version + '"', null))
.then(exec.bind(undefined, 'git push', null))
.then(exec.bind(undefined, 'git tag v' + package.version, null))
.then(exec.bind(undefined, 'git push --tags', null))
.catch(err => {
console.error(err);
});