mirror of
https://github.com/billsonnn/nitro-converter.git
synced 2024-11-26 17:30:52 +01:00
47 lines
1.5 KiB
TypeScript
47 lines
1.5 KiB
TypeScript
import 'reflect-metadata';
|
|
import { container } from 'tsyringe';
|
|
import { Configuration } from './common/config/Configuration';
|
|
import { IConverter } from './common/converters/IConverter';
|
|
import { EffectConverter } from './converters/effect/EffectConverter';
|
|
import { ExternalTextsConverter } from './converters/externaltexts/ExternalTextsConverter';
|
|
import { FigureConverter } from './converters/figure/FigureConverter';
|
|
import { FigureDataConverter } from './converters/figuredata/FigureDataConverter';
|
|
import { FurnitureConverter } from './converters/furniture/FurnitureConverter';
|
|
import { PetConverter } from './converters/pet/PetConverter';
|
|
import { ProductDataConverter } from './converters/productdata/ProductDataConverter';
|
|
|
|
(async () =>
|
|
{
|
|
checkNodeVersion();
|
|
|
|
const config = container.resolve(Configuration);
|
|
await config.init();
|
|
|
|
const converters = [
|
|
ProductDataConverter,
|
|
ExternalTextsConverter,
|
|
FigureConverter,
|
|
EffectConverter,
|
|
FurnitureConverter,
|
|
PetConverter,
|
|
FigureDataConverter
|
|
];
|
|
|
|
for(const converterClass of converters)
|
|
{
|
|
const converter = (container.resolve<any>(converterClass) as IConverter);
|
|
|
|
await converter.convertAsync();
|
|
}
|
|
})();
|
|
|
|
function checkNodeVersion()
|
|
{
|
|
const version = process.version.replace('v', '');
|
|
const major = version.split('.')[0];
|
|
if(parseInt(major) < 14)
|
|
{
|
|
throw new Error('Invalid node version: ' + version + ' please use >= 14');
|
|
}
|
|
}
|