@expo/vector-icons
Version:
Built-in support for 10 popular icon fonts and the tooling to create your own Icon components from your font and glyph map. This is a wrapper around react-native-vector-icons to make it compatible with Expo.
10 lines (8 loc) • 350 B
JavaScript
const execSync = require('child_process').execSync;
const repoName = execSync('git rev-parse --show-toplevel');
if (!repoName.includes('vector-icons')) {
console.error(
'[ERROR] Expo Developer: You cannot run this inside of universe! You need to clone the repo from Github to somewhere outside of universe to deploy'
);
process.exit(1);
}