Fantastic SASS and SCSS compilation for python
Project description
sasstastic
Fantastic SASS and SCSS compilation for python
Installation
pip install sasstastic
run
sasstastic --help
To check sasstastic is install and get help info.
Usage
Define a config file sasstastic.yml
:
download:
# downloaded files will be saved in this directory
dir: styles/.libs
sources:
# download a font css file from google fonts and save it to goog-fonts.css
- url: >
https://fonts.googleapis.com/css?
family=Merriweather:400,400i,700,700i|Titillium+Web|Ubuntu+Mono&display=swap
to: google-fonts.css
# download a style sheet from select2, this will be saved to "select2.css" as
# the name can be inferred from the url
- url: 'https://raw.githubusercontent.com/select2/select2/4.0.13/dist/css/select2.css'
# download the full bootstrap 4 bundle and extract the scss files to the bootstrap/ directory
- url: https://github.com/twbs/bootstrap/archive/v4.4.1.zip
extract:
'bootstrap-4.4.1/scss/(.+)$': bootstrap/
# SCSS and SASS files will be build from this directory
build_dir: styles/
# and saved to this directory
output_dir: css/
# the output directory "css/" will be deleted before all builds
wipe_output_dir: true
Then run sasstastic
to build your sass files.
note:
- if you
sasstastic.yml
file isn't in the current working directory you can pass the path to that file as an argument to sasstastic, e.g.sasstastic path/to/sasstastic.yml
or justsasstastic path/to/
- by default the paths defined in
sasstastic.yml
:download.dir
,build_dir
andoutput_dir
are **relative to the thesasstastic.yml
file - you can override the output directory
ouput_dir
using the-o
argument to the CLI, seesasstastic --help
for more info - sasstastic can build in "development" or "production" mode:
- in development mode css is not compressed, a map file is created and all files from
build_dir
anddownload.dir
are copied intooutput_dir
so map files work correctly - in production mode css is compressed, no other files are added to
output_dir
- in development mode css is not compressed, a map file is created and all files from
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
sasstastic-0.0.2.tar.gz
(12.0 kB
view hashes)
Built Distribution
sasstastic-0.0.2-py3-none-any.whl
(13.3 kB
view hashes)
Close
Hashes for sasstastic-0.0.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2c7b3fbdf197a57d535a53375133e80f1c2f014e054915595ca45fa2a925b4f4 |
|
MD5 | 7604d4272c59cb1c242f8a7723bb26b2 |
|
BLAKE2b-256 | b9275883511f48843b113574784264ab4c2b5517de332b4bdd8a5fef99e11d2d |