mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-22 12:13:48 +01:00
Reject when config not found
This commit is contained in:
parent
58e0f69e0b
commit
bfbb41ffc8
@ -30,6 +30,11 @@ const env = process.env.NODE_ENV;
|
|||||||
const isProduction = env === 'production';
|
const isProduction = env === 'production';
|
||||||
const isDebug = !isProduction;
|
const isDebug = !isProduction;
|
||||||
|
|
||||||
|
if (!fs.existsSync('./.config/config.yml')) {
|
||||||
|
console.log('設定ファイルが見つかりません。npm run configしてください');
|
||||||
|
process.exit();
|
||||||
|
}
|
||||||
|
|
||||||
import { IConfig } from './src/config';
|
import { IConfig } from './src/config';
|
||||||
const config = eval(require('typescript').transpile(require('fs').readFileSync('./src/config.ts').toString()))
|
const config = eval(require('typescript').transpile(require('fs').readFileSync('./src/config.ts').toString()))
|
||||||
('.config/config.yml') as IConfig;
|
('.config/config.yml') as IConfig;
|
||||||
|
Loading…
Reference in New Issue
Block a user