2021-08-24 13:36:48 +08:00
|
|
|
import path from 'path'
|
|
|
|
|
2021-09-15 01:13:36 +08:00
|
|
|
export const projRoot = path.resolve(__dirname, '../')
|
|
|
|
export const pkgRoot = path.resolve(projRoot, './packages')
|
|
|
|
export const compRoot = path.resolve(pkgRoot, './components')
|
|
|
|
export const themeRoot = path.resolve(pkgRoot, './theme-chalk')
|
|
|
|
export const hookRoot = path.resolve(pkgRoot, './hooks')
|
|
|
|
export const localeRoot = path.resolve(pkgRoot, './locale')
|
|
|
|
export const directiveRoot = path.resolve(pkgRoot, './directives')
|
|
|
|
export const epRoot = path.resolve(pkgRoot, './element-plus')
|
|
|
|
export const utilRoot = path.resolve(pkgRoot, './utils')
|
|
|
|
export const buildOutput = path.resolve(projRoot, './dist')
|
2021-09-17 00:18:50 +08:00
|
|
|
export const docRoot = path.resolve(projRoot, './docs')
|