mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-16 04:35:42 +00:00
16 lines
481 B
JavaScript
16 lines
481 B
JavaScript
/**
|
||
* 根据文件路径计算miao-plugin路径及yunzai路径
|
||
* 规避在外部import,在非yunzai根目录执行时,使用process.cwd()查找文件有可能错误的问题
|
||
*/
|
||
import * as path from 'path'
|
||
import { fileURLToPath } from 'url'
|
||
|
||
const __dirname = path.dirname(fileURLToPath(import.meta.url))
|
||
|
||
// miao-plugin根路径
|
||
const miaoPath = path.join(__dirname, '..')
|
||
// yunzai根路径
|
||
const rootPath = path.join(miaoPath, '..', '..')
|
||
|
||
export { miaoPath, rootPath }
|