We can create our own distribution of UIKit using the gulp task:
gulp dist -t THEME-NAME
This will create a folder dist
and generate your minified CSS and JS files from the LESS files.
For my project I have custom JS files and FONTS. If I put subfolders for fonts and js in my THEME folder, they are not taken into consideration by the gulp task.
If I put them in the src
folder they are then added to my distribution.
Is this good practice or what should I do to keep code out of the uikit code and then generate my own distribution?