forked from vueuse/vueuse
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.ts
81 lines (64 loc) · 2.06 KB
/
build.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
import path from 'path'
import assert from 'assert'
import { execSync as exec } from 'child_process'
import fs from 'fs-extra'
import consola from 'consola'
import { packages } from '../meta/packages'
import indexes from '../meta/function-indexes'
import { version } from '../package.json'
import { updateImport } from './utils'
const rootDir = path.resolve(__dirname, '..')
const FILES_COPY_ROOT = [
'LICENSE',
]
const FILES_COPY_LOCAL = [
'README.md',
]
assert(process.cwd() !== __dirname)
async function buildMetaFiles() {
for (const { name } of packages) {
const packageRoot = path.resolve(__dirname, '..', 'packages', name)
const packageDist = path.resolve(packageRoot, 'dist')
if (name === 'core') {
await fs.copyFile(path.join(rootDir, 'README.md'), path.join(packageDist, 'README.md'))
await fs.copyFile(path.join(rootDir, 'indexes.json'), path.join(packageDist, 'indexes.json'))
}
for (const file of FILES_COPY_ROOT)
await fs.copyFile(path.join(rootDir, file), path.join(packageDist, file))
for (const file of FILES_COPY_LOCAL) {
if (fs.existsSync(path.join(packageRoot, file)))
await fs.copyFile(path.join(packageRoot, file), path.join(packageDist, file))
}
const packageJSON = await fs.readJSON(path.join(packageRoot, 'package.json'))
for (const key of Object.keys(packageJSON.dependencies)) {
if (key.startsWith('@vueuse/'))
packageJSON.dependencies[key] = version
}
await fs.writeJSON(path.join(packageDist, 'package.json'), packageJSON, { spaces: 2 })
}
}
async function build() {
consola.info('Clean up')
exec('pnpm run clean', { stdio: 'inherit' })
consola.info('Generate Imports')
await updateImport(indexes)
consola.info('Rollup')
exec('pnpm run build:rollup', { stdio: 'inherit' })
consola.info('Fix types')
exec('pnpm run types:fix', { stdio: 'inherit' })
await buildMetaFiles()
}
async function cli() {
try {
await build()
}
catch (e) {
console.error(e)
process.exit(1)
}
}
export {
build,
}
if (require.main === module)
cli()