UNPKG

move-prop-types

Version:

"Help quickly replace the prop type checker in older react projects to map to prop-types"

11 lines 278 B
#!/usr/bin/env node /** * CLI entry point for move-prop-types */ import { runCLI } from './core.js'; // Run the CLI when this file is executed directly runCLI().catch((error) => { console.error('CLI Error:', error); process.exit(1); }); //# sourceMappingURL=cli.js.map