i18ntk
Version:
🚀 The fastest i18n toolkit with 97% performance boost! Zero-dependency, enterprise-grade internationalization for React, Vue, Angular, Python, Java, PHP & more. Features PIN protection, auto framework detection, 7+ UI languages, and comprehensive transla
23 lines (19 loc) • 487 B
JavaScript
const SetupEnforcer = require('../utils/setup-enforcer');
const SettingsCLI = require('../settings/settings-cli');
(async () => {
try {
await SetupEnforcer.checkSetupCompleteAsync();
} catch (error) {
console.error('Setup check failed:', error.message);
process.exit(1);
}
})();
async function run() {
const cli = new SettingsCLI();
await cli.run();
}
if (require.main === module) {
run();
}
module.exports = { run };