forked from vuejs/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaliases.js
37 lines (31 loc) · 1.02 KB
/
aliases.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
// @ts-check
// these aliases are shared between vitest and rollup
import { readdirSync, statSync } from 'node:fs'
import path from 'node:path'
import { fileURLToPath } from 'node:url'
const resolveEntryForPkg = (/** @type {string} */ p) =>
path.resolve(
fileURLToPath(import.meta.url),
`../../packages/${p}/src/index.ts`,
)
const dirs = readdirSync(new URL('../packages', import.meta.url))
/** @type {Record<string, string>} */
const entries = {
vue: resolveEntryForPkg('vue'),
'vue/compiler-sfc': resolveEntryForPkg('compiler-sfc'),
'vue/server-renderer': resolveEntryForPkg('server-renderer'),
'@vue/compat': resolveEntryForPkg('vue-compat'),
}
const nonSrcPackages = ['sfc-playground', 'template-explorer', 'dts-test']
for (const dir of dirs) {
const key = `@vue/${dir}`
if (
dir !== 'vue' &&
!nonSrcPackages.includes(dir) &&
!(key in entries) &&
statSync(new URL(`../packages/${dir}`, import.meta.url)).isDirectory()
) {
entries[key] = resolveEntryForPkg(dir)
}
}
export { entries }