-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathwatch.mjs
204 lines (166 loc) · 4.52 KB
/
watch.mjs
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
/*eslint-env node*/
import chokidar from 'chokidar'
import path from 'path'
import { execSync, spawn, exec, execFileSync } from 'child_process'
import { argv } from 'process'
import colors from 'colors/safe.js'
function yellow() {
console.log(colors.bgBlue.brightYellow.bold.underline(...arguments, ' '))
}
function green() {
console.log(colors.bgBlue.brightGreen.bold.underline(...arguments, ' '))
}
const FAST_MODE = argv.includes('--fast')
if (FAST_MODE) {
yellow('Enable fast mode. \nWill not build downstream packages.')
}
green('read local packages...')
const packagesJSON = execSync('npx lerna ls --json --all').toString()
const packageALL = JSON.parse(packagesJSON)
// console.log(packageALL)
import blist from './ignore.mjs'
const validPackages = packageALL.filter((pac) => {
let inBL = false
blist.forEach((rule) => {
inBL = inBL || pac.location.includes(rule)
})
return !inBL
})
// console.log('validPackages', validPackages)
function getLocalPackageByName(name) {
const pkg = validPackages.filter((p) => p.name === name)[0]
return pkg
}
function getLocalPackageByPath(path) {
const pkg = validPackages.filter((p) => path.includes(p.location))[0]
return pkg
}
green('read packages dependents...')
const dependentGraphJSON = execSync('npx lerna list --graph').toString()
const dependentGraph = JSON.parse(dependentGraphJSON)
// console.log(dependentGraph)
green('analyzing impact-graph...')
const impactGraph = {}
{
const keys = Object.keys(dependentGraph)
keys.forEach((key) => {
// 确定属于本地包
const pkg = getLocalPackageByName(key)
if (!pkg) {
console.log(colors.yellow(' - ', key, 'will be ignored.'))
return
}
const deps = dependentGraph[key]
deps.forEach((depName) => {
const pkg = getLocalPackageByName(depName)
if (!pkg) {
console.log(colors.yellow(' - ', depName, 'will be ignored.'))
return
}
if (!impactGraph[depName]) {
impactGraph[depName] = []
}
impactGraph[depName].push(key)
})
})
}
// console.log('impactGraph', impactGraph)
if (!FAST_MODE) {
for (const name of Object.keys(impactGraph)) {
console.log(
colors.cyan(
' - ',
name.slice(6),
'=> [',
impactGraph[name].map((a) => a.slice(6)).join(', '),
']'
)
)
}
}
function findAllDirtPkgs(pkg) {
const dirtList = new Set()
if (FAST_MODE) {
dirtList.add(pkg.name)
return dirtList
} else {
// eslint-disable-next-line no-inner-declarations
function dirtWalker(pkg) {
// 不要重复添加
// if (!dirtList.includes(pkg.name)) {
// dirtList.push(pkg.name)
// }
dirtList.add(pkg.name)
// 查找 impacts
const impacts = impactGraph[pkg.name] || []
for (const impactedPkgName of impacts) {
const impactedPkg = getLocalPackageByName(impactedPkgName)
if (impactedPkg) {
dirtWalker(impactedPkg)
}
}
}
dirtWalker(pkg)
return dirtList
}
}
/**
* 编译列表
*/
let waitlist = new Set()
let building = false
/**
*
* @param {Set<string>} dirtList
*/
async function rebuildDirt(dirtList) {
yellow('start building these packages', [...dirtList.values()].join(' '))
const command = `npx`
const args = ['lerna', 'run', '--no-private', '--stream', 'build']
dirtList.forEach((pkgName) => {
args.push(`--scope`, `${pkgName}`)
})
const sub = spawn(command, args, { stdio: 'inherit' })
sub.on('close', (code) => {
building = false
green('building done')
if (waitlist.size > 0) {
yellow('waitlist not empty. start another building...')
const newDirtlist = new Set(waitlist)
waitlist.clear()
building = true
rebuildDirt(newDirtlist)
}
})
}
function fireDirtList(dirtList) {
if (building) {
yellow('another building runing... join wait list')
dirtList.forEach((pkgName) => waitlist.add(pkgName))
} else {
yellow('builder available. start building...')
building = true
rebuildDirt(dirtList)
}
}
const watcher = chokidar.watch([path.resolve(process.env.PWD, './packages')], {
followSymlinks: false,
ignored: ['**/node_modules/**', '**/dist/**', '**/*.tsbuildinfo', '**/.cached-built-head'],
ignoreInitial: true,
atomic: 500,
})
green('started watching....')
watcher.on('all', (eventName, _path, stats) => {
const pkg = getLocalPackageByPath(_path)
// console.log(pkg)
if (!pkg) {
// '不是monorepo本地package,或者在ignore名单中,将忽略'
console.warn('detected change but ignoring...', pkg)
return
}
yellow('change detected. type:', eventName, pkg.name, _path)
// buildPkgRecursively(pkg)
const dirtList = findAllDirtPkgs(pkg)
// console.log(dirtList)
fireDirtList(dirtList)
})