I would like to enhance the minification task in creating the app/static/min folder by making it aware of three others directories: favicon, font and lib.
This three folders and their contents would be copied as-is from the src folder to the min folder.
static
├── min
│ ├── css
│ ├── favicon
│ ├── font
│ ├── img
│ ├── js
│ └── lib
└── src
├── css
├── favicon
├── font
├── img
├── js
└── lib
Advantages obtained
- Fonts, favicons and external libraries support. Now not present.
- The three folders would be automatically copied and kept up to date into the
min folder by the watch and prepare-deploy tasks.
- No more need to create ad-hoc solutions for projects using atuin-tools that need to import external libraries (css/js/img files), fonts or for which you want to set up a favicon.
- Carefree deployments without the worry the
min folder has something lacking.
I would like to enhance the minification task in creating the
app/static/minfolder by making it aware of three others directories:favicon,fontandlib.This three folders and their contents would be copied as-is from the
srcfolder to theminfolder.Advantages obtained
minfolder by thewatchandprepare-deploytasks.minfolder has something lacking.