-
Notifications
You must be signed in to change notification settings - Fork 190
/
Copy pathlink.js
92 lines (82 loc) · 2.56 KB
/
link.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/**
* Tencent is pleased to support the open source community by making CloudBaseFramework - 云原生一体化部署工具 available.
*
* Copyright (C) 2020 THL A29 Limited, a Tencent company. All rights reserved.
*
* Please refer to license text included with this package for license details.
*/
const os = require('os');
const fs = require('fs');
const del = require('del');
const path = require('path');
const mkdirp = require('mkdirp');
const { promisify } = require('util');
const { execSync } = require('child_process');
const creatSymlink = require('@lerna/create-symlink');
const globalNpmPath = execSync('npm root -g', {
encoding: 'utf-8',
}).trim();
const pluginRegistry = path.join(os.homedir(), 'cloudbase-framework/registry');
module.exports = async function main() {
await linkCore();
initRegistry();
await linkPlugins();
};
async function linkCore() {
await link(
path.join(process.cwd(), 'packages/framework-core'),
path.join(globalNpmPath, '@cloudbase/cli'),
'@cloudbase/framework-core'
);
}
function initRegistry() {
if (!fs.existsSync(pluginRegistry)) {
mkdirp.sync(pluginRegistry, { recursive: true });
}
const packageJSON = path.join(pluginRegistry, 'package.json');
if (!fs.existsSync(packageJSON)) {
fs.writeFileSync(
packageJSON,
JSON.stringify({
name: 'cloudbase-framework-registry',
})
);
}
}
async function linkPlugins() {
const files = await promisify(fs.readdir)(
path.join(process.cwd(), 'packages')
);
const plugins = files.filter((file) => file.includes('plugin'));
// 插件列表
console.log(plugins);
for (const plugin of plugins) {
console.log('\n', 'Link Plugin', plugin, '\n');
// 创建软连接
await link(
path.join(process.cwd(), 'packages', plugin),
pluginRegistry,
`@cloudbase/${plugin}`
);
}
}
// 将 global tcb cli 工具中的 framework-core link 到 packages/framework-core
async function link(src, dest, packageName) {
const prevCwd = process.cwd();
const destPlugin = path.join(dest, 'node_modules', '@cloudbase');
// 确保目录存在
mkdirp.sync(destPlugin);
// 切换 cwd
process.chdir(destPlugin);
console.log('创建软连接:', process.cwd());
const pathName = packageName.replace('@cloudbase/', '');
// 删除已存在的文件
if (fs.existsSync(pathName)) {
console.log(pathName);
const deletedFilePaths = await del([pathName]);
console.log(deletedFilePaths, fs.existsSync(pathName));
}
await creatSymlink(src, pathName, 'junction');
// 切回源目录
process.chdir(prevCwd);
}