UNPKG

@react-native-vector-icons/common

Version:

Customizable Icons for React Native with support for image source and full styling.

11 lines (10 loc) 393 B
#!/usr/bin/env node "use strict"; import { getFontPaths } from "./common.js"; const packageJsonFilename = process.argv[2]; if (!packageJsonFilename) { throw new Error('Need the path to the roo package.json as the first argument'); } const fonts = getFontPaths(packageJsonFilename); fonts.map(font => console.log(font)); // eslint-disable-line no-console //# sourceMappingURL=getFonts.js.map