1.0.1 • Published 2 years ago

dtcgen v1.0.1

Weekly downloads
2
License
Apache-2.0
Repository
github
Last release
2 years ago

npm.io

Requirements

  • node version >= 14.15.4
  • Figma design file
  • Figma shared library ( for dtcgen style command )

Install

yarn global add dtcgen
# or
npm install -g dtcgen

How to use

  1. create config files with dtcgen init , then fill out required parameters in .env file
  2. dtcgen slice to generate Image Set of xcassets
  3. dtcgen style to generate Color Set of xcassets

*) If you installed locally, prepend npx before dtcgen.

Available parameters on dtc.config.json

slice

prop nametypedescription
caseSensitivebooleanset true if you want keyword to be case sensitive.
keywordsstring[]multiple keywords included in components' names that you want to extract.
extensionstringthe file extension to be extracted. currently supporting pdf/svg/png.
sliceAllImagesbooleanset true if you want to extract all images within a design file as png.
scalesnumber[]set scales you want to extract. but it's valid only on 'png' extension.

numbers that you can specify to scales are as below:

scales
figma1, 2, 3, 4

more detail about keywords parameter

Assuming you want to retrieve icons as xcassets-ready files, and icons have defined under Icons / *** already. Then, you need to add icons or Icons (if caseSensitive) to keywords within dtc.config.json . So you can retrieve all icons under that.

*) Spaces in between will be eliminated on generating assets. Then / is treated as a folder on generation.

style

prop nametypedescription
color.isEnabledbooleanset true if you want to extract and generate color xcassets.

Templates

All templates use namespace . You can modify templates as you like once you get your own templates folder created automatically after first command execution. You can specify your own template folder by .env file.

slice

  • iconName.imageset
    • universal
    • if extension is png, create multiple scaled images from 1x to 4x as specified by scales .
    • if extension is svg or pdf, it will check Preserve Vector Data .

*) If something wrong, deleting OUTPUT_PATH/extracted folder would fix the issue ( OUTPUT_PATH is defined in .env ).

style

Changelog

https://github.com/mitolog/dtcgen/blob/master/Changelog.md

LICENSE

apache2.0