1.0.5 • Published 4 years ago

icont-cli v1.0.5

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

icont-cli

A tool which convert svg(s) to tff, and output .dart file for flutter project And u can copy result(s) to dist dir.

Install

npm install -g icont-cli

Usage

convert svg(s) to ttf & dart file

Usage: icont [options] [command]

Convert SVG(s) to ttf file

Options:
  -v, --version           output the version number
  -i, --input <path|dir>  input svg dir or file path (default: "svg")
  -o, --output <dir>      output path (default: "output")
  -n, --fontname <name>   output font name (default: "iconfonts")
  -h, --help              display help for command

Commands:
  copy [options]          copy file to target dir.

copy files

Usage: icont copy [options]

copy file to target dir.

Options:
  -d, --dist <dir>     dist dir
  -s, --src <dir>      copy form dir
  -e, --ext <extname>  file ext name
  -h, --help           display help for command

Flutter Project Configuration Demo

  • pubspec.yaml
fonts:
    - family: iconfonts
      fonts:
        - asset: iconfonts/iconfonts.ttf
  • script sample
#!/usr/bin/env bash
if [ ! `command -v icont` ]; then
  npm install -g icont-cli
fi

temp_dir='.icont'
fonts_dir='fonts'
dart_path='lib'

# svg to ttf & dart
icont -i svg -o $temp_dir

# copy to target dir
icont copy -s $temp_dir -d $fonts_dir -e .ttf
icont copy -s $temp_dir -d $dart_path -e .dart

# delete temp dir
# rm -rf $temp_dir