├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── images ├── default-color-icon.png ├── icons.png ├── multi-color-icon.png ├── one-color-icon.png └── symbol-url.png ├── localSvgs ├── classSvg.svg ├── inlineStyle.svg ├── normal.svg └── style.svg ├── package.json ├── publish.sh ├── scripts ├── config │ ├── demo-js-nonurl.json │ ├── demo-js.json │ ├── demo-ts-nonurl.json │ └── demo-ts.json └── update-snapshot.sh ├── snapshots ├── demo-js-nonurl │ ├── IconClassSvg.d.ts │ ├── IconClassSvg.js │ ├── IconInlineStyle.d.ts │ ├── IconInlineStyle.js │ ├── IconNormal.d.ts │ ├── IconNormal.js │ ├── IconStyle.d.ts │ ├── IconStyle.js │ ├── helper.d.ts │ ├── helper.js │ ├── index.d.ts │ └── index.js ├── demo-js │ ├── IconAlipay.d.ts │ ├── IconAlipay.js │ ├── IconClassSvg.d.ts │ ├── IconClassSvg.js │ ├── IconInlineStyle.d.ts │ ├── IconInlineStyle.js │ ├── IconNormal.d.ts │ ├── IconNormal.js │ ├── IconSetup.d.ts │ ├── IconSetup.js │ ├── IconStyle.d.ts │ ├── IconStyle.js │ ├── IconUser.d.ts │ ├── IconUser.js │ ├── helper.d.ts │ ├── helper.js │ ├── index.d.ts │ └── index.js ├── demo-ts-nonurl │ ├── IconClassSvg.tsx │ ├── IconInlineStyle.tsx │ ├── IconNormal.tsx │ ├── IconStyle.tsx │ ├── helper.ts │ └── index.tsx └── demo-ts │ ├── IconAlipay.tsx │ ├── IconClassSvg.tsx │ ├── IconInlineStyle.tsx │ ├── IconNormal.tsx │ ├── IconSetup.tsx │ ├── IconStyle.tsx │ ├── IconUser.tsx │ ├── helper.ts │ └── index.tsx ├── src ├── commands │ ├── createIcon.ts │ ├── createJson.ts │ └── help.ts ├── libs │ ├── copyTemplate.ts │ ├── generateComponent.ts │ ├── getConfig.ts │ ├── getTemplate.ts │ ├── iconfont.json │ ├── parseLocalSvg.ts │ ├── replace.ts │ └── whitespace.ts └── templates │ ├── Icon.d.ts.template │ ├── Icon.js.template │ ├── Icon.tsx.template │ ├── LocalSingleIcon.js.template │ ├── LocalSingleIcon.tsx.template │ ├── SingleIcon.d.ts.template │ ├── SingleIcon.js.template │ ├── SingleIcon.tsx.template │ ├── helper.d.ts.template │ ├── helper.js.template │ └── helper.ts.template ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/README.md -------------------------------------------------------------------------------- /images/default-color-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/images/default-color-icon.png -------------------------------------------------------------------------------- /images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/images/icons.png -------------------------------------------------------------------------------- /images/multi-color-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/images/multi-color-icon.png -------------------------------------------------------------------------------- /images/one-color-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/images/one-color-icon.png -------------------------------------------------------------------------------- /images/symbol-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/images/symbol-url.png -------------------------------------------------------------------------------- /localSvgs/classSvg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/localSvgs/classSvg.svg -------------------------------------------------------------------------------- /localSvgs/inlineStyle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/localSvgs/inlineStyle.svg -------------------------------------------------------------------------------- /localSvgs/normal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/localSvgs/normal.svg -------------------------------------------------------------------------------- /localSvgs/style.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/localSvgs/style.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/package.json -------------------------------------------------------------------------------- /publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/publish.sh -------------------------------------------------------------------------------- /scripts/config/demo-js-nonurl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/scripts/config/demo-js-nonurl.json -------------------------------------------------------------------------------- /scripts/config/demo-js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/scripts/config/demo-js.json -------------------------------------------------------------------------------- /scripts/config/demo-ts-nonurl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/scripts/config/demo-ts-nonurl.json -------------------------------------------------------------------------------- /scripts/config/demo-ts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/scripts/config/demo-ts.json -------------------------------------------------------------------------------- /scripts/update-snapshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/scripts/update-snapshot.sh -------------------------------------------------------------------------------- /snapshots/demo-js-nonurl/IconClassSvg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-js-nonurl/IconClassSvg.d.ts -------------------------------------------------------------------------------- /snapshots/demo-js-nonurl/IconClassSvg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-js-nonurl/IconClassSvg.js -------------------------------------------------------------------------------- /snapshots/demo-js-nonurl/IconInlineStyle.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-js-nonurl/IconInlineStyle.d.ts -------------------------------------------------------------------------------- /snapshots/demo-js-nonurl/IconInlineStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-js-nonurl/IconInlineStyle.js -------------------------------------------------------------------------------- /snapshots/demo-js-nonurl/IconNormal.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-js-nonurl/IconNormal.d.ts -------------------------------------------------------------------------------- /snapshots/demo-js-nonurl/IconNormal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-js-nonurl/IconNormal.js -------------------------------------------------------------------------------- /snapshots/demo-js-nonurl/IconStyle.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-js-nonurl/IconStyle.d.ts -------------------------------------------------------------------------------- /snapshots/demo-js-nonurl/IconStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-js-nonurl/IconStyle.js -------------------------------------------------------------------------------- /snapshots/demo-js-nonurl/helper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-js-nonurl/helper.d.ts -------------------------------------------------------------------------------- /snapshots/demo-js-nonurl/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-js-nonurl/helper.js -------------------------------------------------------------------------------- /snapshots/demo-js-nonurl/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-js-nonurl/index.d.ts -------------------------------------------------------------------------------- /snapshots/demo-js-nonurl/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-js-nonurl/index.js -------------------------------------------------------------------------------- /snapshots/demo-js/IconAlipay.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-js/IconAlipay.d.ts -------------------------------------------------------------------------------- /snapshots/demo-js/IconAlipay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-js/IconAlipay.js -------------------------------------------------------------------------------- /snapshots/demo-js/IconClassSvg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-js/IconClassSvg.d.ts -------------------------------------------------------------------------------- /snapshots/demo-js/IconClassSvg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-js/IconClassSvg.js -------------------------------------------------------------------------------- /snapshots/demo-js/IconInlineStyle.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-js/IconInlineStyle.d.ts -------------------------------------------------------------------------------- /snapshots/demo-js/IconInlineStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-js/IconInlineStyle.js -------------------------------------------------------------------------------- /snapshots/demo-js/IconNormal.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-js/IconNormal.d.ts -------------------------------------------------------------------------------- /snapshots/demo-js/IconNormal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-js/IconNormal.js -------------------------------------------------------------------------------- /snapshots/demo-js/IconSetup.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-js/IconSetup.d.ts -------------------------------------------------------------------------------- /snapshots/demo-js/IconSetup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-js/IconSetup.js -------------------------------------------------------------------------------- /snapshots/demo-js/IconStyle.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-js/IconStyle.d.ts -------------------------------------------------------------------------------- /snapshots/demo-js/IconStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-js/IconStyle.js -------------------------------------------------------------------------------- /snapshots/demo-js/IconUser.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-js/IconUser.d.ts -------------------------------------------------------------------------------- /snapshots/demo-js/IconUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-js/IconUser.js -------------------------------------------------------------------------------- /snapshots/demo-js/helper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-js/helper.d.ts -------------------------------------------------------------------------------- /snapshots/demo-js/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-js/helper.js -------------------------------------------------------------------------------- /snapshots/demo-js/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-js/index.d.ts -------------------------------------------------------------------------------- /snapshots/demo-js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-js/index.js -------------------------------------------------------------------------------- /snapshots/demo-ts-nonurl/IconClassSvg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-ts-nonurl/IconClassSvg.tsx -------------------------------------------------------------------------------- /snapshots/demo-ts-nonurl/IconInlineStyle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-ts-nonurl/IconInlineStyle.tsx -------------------------------------------------------------------------------- /snapshots/demo-ts-nonurl/IconNormal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-ts-nonurl/IconNormal.tsx -------------------------------------------------------------------------------- /snapshots/demo-ts-nonurl/IconStyle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-ts-nonurl/IconStyle.tsx -------------------------------------------------------------------------------- /snapshots/demo-ts-nonurl/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-ts-nonurl/helper.ts -------------------------------------------------------------------------------- /snapshots/demo-ts-nonurl/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-ts-nonurl/index.tsx -------------------------------------------------------------------------------- /snapshots/demo-ts/IconAlipay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-ts/IconAlipay.tsx -------------------------------------------------------------------------------- /snapshots/demo-ts/IconClassSvg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-ts/IconClassSvg.tsx -------------------------------------------------------------------------------- /snapshots/demo-ts/IconInlineStyle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-ts/IconInlineStyle.tsx -------------------------------------------------------------------------------- /snapshots/demo-ts/IconNormal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-ts/IconNormal.tsx -------------------------------------------------------------------------------- /snapshots/demo-ts/IconSetup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-ts/IconSetup.tsx -------------------------------------------------------------------------------- /snapshots/demo-ts/IconStyle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-ts/IconStyle.tsx -------------------------------------------------------------------------------- /snapshots/demo-ts/IconUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-ts/IconUser.tsx -------------------------------------------------------------------------------- /snapshots/demo-ts/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-ts/helper.ts -------------------------------------------------------------------------------- /snapshots/demo-ts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/snapshots/demo-ts/index.tsx -------------------------------------------------------------------------------- /src/commands/createIcon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/src/commands/createIcon.ts -------------------------------------------------------------------------------- /src/commands/createJson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/src/commands/createJson.ts -------------------------------------------------------------------------------- /src/commands/help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/src/commands/help.ts -------------------------------------------------------------------------------- /src/libs/copyTemplate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/src/libs/copyTemplate.ts -------------------------------------------------------------------------------- /src/libs/generateComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/src/libs/generateComponent.ts -------------------------------------------------------------------------------- /src/libs/getConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/src/libs/getConfig.ts -------------------------------------------------------------------------------- /src/libs/getTemplate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/src/libs/getTemplate.ts -------------------------------------------------------------------------------- /src/libs/iconfont.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/src/libs/iconfont.json -------------------------------------------------------------------------------- /src/libs/parseLocalSvg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/src/libs/parseLocalSvg.ts -------------------------------------------------------------------------------- /src/libs/replace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/src/libs/replace.ts -------------------------------------------------------------------------------- /src/libs/whitespace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/src/libs/whitespace.ts -------------------------------------------------------------------------------- /src/templates/Icon.d.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/src/templates/Icon.d.ts.template -------------------------------------------------------------------------------- /src/templates/Icon.js.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/src/templates/Icon.js.template -------------------------------------------------------------------------------- /src/templates/Icon.tsx.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/src/templates/Icon.tsx.template -------------------------------------------------------------------------------- /src/templates/LocalSingleIcon.js.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/src/templates/LocalSingleIcon.js.template -------------------------------------------------------------------------------- /src/templates/LocalSingleIcon.tsx.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/src/templates/LocalSingleIcon.tsx.template -------------------------------------------------------------------------------- /src/templates/SingleIcon.d.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/src/templates/SingleIcon.d.ts.template -------------------------------------------------------------------------------- /src/templates/SingleIcon.js.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/src/templates/SingleIcon.js.template -------------------------------------------------------------------------------- /src/templates/SingleIcon.tsx.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/src/templates/SingleIcon.tsx.template -------------------------------------------------------------------------------- /src/templates/helper.d.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/src/templates/helper.d.ts.template -------------------------------------------------------------------------------- /src/templates/helper.js.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/src/templates/helper.js.template -------------------------------------------------------------------------------- /src/templates/helper.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/src/templates/helper.ts.template -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iconfont-cli/react-native-iconfont-cli/HEAD/yarn.lock --------------------------------------------------------------------------------