-
Notifications
You must be signed in to change notification settings - Fork 411
/
Copy pathpublish.ts
165 lines (137 loc) · 4.4 KB
/
publish.ts
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
/* eslint-disable no-console */
import { execSync } from 'child_process';
import { join } from 'path';
import { createInterface } from 'readline';
import chalk from 'chalk';
import { ensureFileSync, readFileSync, writeFileSync } from 'fs-extra';
import git from 'git-rev-sync';
import semver from 'semver';
import pkg from '../lerna.json';
import { argv } from '../packages/core-common/src/node/cli';
import { generateManifest } from './manifest';
import Package, { readAllMainPackages } from './pkg';
const rl = createInterface({
input: process.stdin,
output: process.stdout,
});
interface IDisposable {
dispose: () => void;
}
// 当publish结束或者process
const subscriptions: Array<IDisposable> = [];
function cleanSideEffect() {
if (argv.rollback && subscriptions.length > 0) {
console.log('Rollback package.json..');
while (subscriptions.length > 0) {
const sub = subscriptions.pop()!;
sub.dispose();
}
}
}
function updateFileWithDispose(filePath: string, content: any | ((original: string) => any)) {
ensureFileSync(filePath);
const original = readFileSync(filePath, { encoding: 'utf8' });
let newContent = content;
if (typeof content === 'function') {
newContent = content(original);
}
writeFileSync(filePath, `${JSON.stringify(newContent, null, 2)}\n`);
subscriptions.push({
dispose: () => {
writeFileSync(filePath, original);
},
});
}
const mainPkgPath = join(__dirname, '../package.json');
// 更新根目录 package.json 的版本号
function updatePackVersion(version: string) {
updateFileWithDispose(mainPkgPath, (original: string) => {
const json = JSON.parse(original);
json.version = version;
return json;
});
}
/**
* 生成对应版本号的 manifest.json,包括:
* * packages 字段,包含所有包名和对应的版本号
*/
const localManifest = join(__dirname, '../packages/types/manifest.json');
async function generateManifestFile(pkgList: Package[], version: string) {
const manifest = await generateManifest(pkgList, version);
updateFileWithDispose(localManifest, manifest);
}
function doPublishPackages(packages, version, distTag) {
let i = 1;
packages.forEach((p) => {
if (semver.gt(version, p.version)) {
process.stdout.write(`[Progress: ${i}/${packages.length}]`);
p.publish(version, packages, distTag, subscriptions);
}
i++;
});
process.stdout.write('[Progress: Updating package version]');
updatePackVersion(version);
// 在非回滚模式下,提交一个 release 的 commit,并且打一个 tag
if (!argv.rollback && !argv.versionOnly) {
execSync(`git commit -a -m 'chore: ${version}' && git tag v${version}`, {
env: process.env,
stdio: ['pipe', 'ignore', 'pipe'],
});
}
}
async function publishMainPacks(version, distTag) {
const packages: Package[] = readAllMainPackages();
process.stdout.write('[Progress: Generating manifest.json]\n');
await generateManifestFile(packages, version);
doPublishPackages(packages, version, distTag);
}
function askVersion() {
const distTag = argv.type || argv.tag;
if (distTag && ['snapshot', 'next'].includes(distTag as string)) {
const version = `${semver.inc(pkg.version, 'patch')}-${distTag}-${git.long().slice(0, 8)}`;
console.log(`Will publish ${distTag} version: ${version}`);
publish(version, distTag as string);
return;
}
const desc = `Current version: ${chalk.greenBright(pkg.version)}\nWrite ${
argv.versionOnly ? 'Update' : 'Publish'
} Version:`;
rl.question(desc, (version) => {
publish(version);
});
}
function publish(version, distTag = 'latest') {
const semverVersion = semver.valid(version);
if (!semverVersion) {
console.error(`${version} is not a verified version`);
askVersion();
return;
} else {
try {
const desc = `Ensure ${argv.versionOnly ? 'Update' : 'Publish'} Version: ${chalk.green(
semverVersion,
)}\ndistTag: ${chalk.green(distTag)} \nplease press any key to continue`;
rl.question(desc, async () => {
await publishMainPacks(semverVersion, distTag);
console.log('[SUCCESS] Done');
process.exit();
});
} finally {
cleanSideEffect();
}
}
}
process.on('exit', () => {
cleanSideEffect();
});
process.on('SIGINT', () => {
cleanSideEffect();
});
process.on('SIGTERM', () => {
cleanSideEffect();
});
if (argv.targetVersion) {
publish(argv.targetVersion);
} else {
askVersion();
}