-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcopyFiles.mjs
executable file
·81 lines (66 loc) · 1.87 KB
/
copyFiles.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
/*eslint-env node*/
import { argv } from 'process'
import path from 'path'
import { execSync } from 'child_process'
// console.log(argv)
// console.log(process.env.PWD)
console.log(
'\x1b[36m%s\x1b[0m',
`
*********************
* *
* copy shared files *
* *
*********************
`
)
import blacklist from './ignore.mjs'
const packages = execSync('npx lerna ls -p')
.toString()
.split('\n')
.filter((line) => {
let inBL = false
blacklist.forEach((rule) => {
inBL = inBL || line.includes(rule)
})
if (inBL) {
console.log('copyFiles::ignore package:', line)
}
// lerna notice 不会被返回掉
// return !line.startsWith('lerna ') && line.trim() !== '' && !inBL
return line.trim() !== '' && !inBL
})
// console.log(packages)
const COPY_TS_CONFIG = true
if (COPY_TS_CONFIG) {
const sharedBaseConfig = path.resolve(process.cwd(), 'shared', './tsconfig.base.json')
const sharedBuildConfig = path.resolve(process.cwd(), 'shared', './tsconfig.build.json')
for (const pkg of packages) {
// console.log(pkg)
const target = path.resolve(pkg, 'tsconfig.base.json')
const targetBuild = path.resolve(pkg, 'tsconfig.build.json')
// const targetBuildOld = path.resolve(pkg, 'tsconfig.base.package.json')
// console.log(execSync(`rm -f ${targetBuildOld}`).toString())
exe(`rm -f ${target}`)
exe(`cp ${sharedBaseConfig} ${target}`)
exe(`rm -f ${targetBuild}`)
exe(`cp ${sharedBuildConfig} ${targetBuild}`)
}
}
const COPY_SCRIPTS = true
if (COPY_SCRIPTS) {
const sharedScripts = path.resolve(process.cwd(), 'shared', 'scripts')
for (const pkg of packages) {
// pkg
const target = path.resolve(pkg, 'scripts')
exe(`rm -rf ${target}`)
exe(`cp -r ${sharedScripts} ${target}`)
exe(`chmod 777 ${target}/*`)
}
}
function exe(cmd) {
const res = execSync(cmd).toString().trim()
if (res !== '') {
console.log(res)
}
}