-
Notifications
You must be signed in to change notification settings - Fork 410
/
Copy pathmanifest.ts
65 lines (56 loc) · 1.65 KB
/
manifest.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
import * as fs from 'fs';
import { join } from 'path';
import Package from './pkg';
/**
* 生成对应版本号的 manifest.json,包括:
*/
export async function generateManifest(pkgList: Package[], version: string) {
const manifest = {
meta: await collectPkgContains(pkgList, version),
packages: collectPkgVersionList(pkgList, version),
};
return manifest;
}
/**
* packages 字段,包含所有包名和对应的版本号
*/
export function collectPkgVersionList(pkgList: Package[], version: string) {
return Array.from(pkgList.map((p) => p.name)).reduce((prev, cur) => {
prev[cur] = version;
return prev;
}, {} as { [key: string]: string });
}
/**
* 收集每个包下的 browser/node/common 入口信息
*/
export async function collectPkgContains(pkgList: Package[], version: string) {
const result = {};
for (const pkg of pkgList) {
const pkgName = pkg.name;
const pkgPath = pkg.path;
const pkgSrcPath = join(pkgPath, 'src');
const desc = {
node: await exists(join(pkgSrcPath, '/node/index.ts')),
browser: await exists(join(pkgSrcPath, '/browser/index.ts')),
common: await exists(join(pkgSrcPath, '/common/index.ts')),
};
const entries: string[] = [];
for (const entryIdentifier of ['node', 'browser', 'common']) {
const existed = await exists(join(pkgSrcPath, entryIdentifier, 'index.ts'));
if (existed) {
entries.push(entryIdentifier);
}
}
result[pkgName] = {
version,
entry: entries,
};
}
return result;
}
function exists(filePath: string) {
return fs.promises
.access(filePath)
.then(() => true)
.catch(() => false);
}