mirror of
https://github.com/pysunday/rs-reverse.git
synced 2025-04-12 03:46:56 +08:00
17 lines
670 B
JavaScript
17 lines
670 B
JavaScript
const paths = require('@utils/paths');
|
||
const fs = require('fs');
|
||
const { init } = require('@src/handler/parser/');
|
||
const logger = require('./logger');
|
||
const gv = require('@src/handler/globalVarible');
|
||
|
||
module.exports = function(filepath) {
|
||
if (typeof filepath !== 'string') {
|
||
if (typeof filepath === 'number') gv._setAttr('version', filepath);
|
||
filepath = paths.exampleResolve('codes', `${gv.version}-$_ts-full.json`)
|
||
}
|
||
if (!fs.existsSync(filepath)) throw new Error(`输入文件不存在: ${filepath}`);
|
||
logger.debug(`初始化GlobalVarible变量,$_ts配置文件:${filepath}`);
|
||
init(JSON.parse(fs.readFileSync(filepath, 'utf8')));
|
||
return gv;
|
||
};
|