Skip to main content

Using libsass, compile all .scss files found in the paths defined in settings.STATICFILES_FINDERS.

Project description

PyPI

django-sass-compiler

Simplify the use of Sass in Django

Using libsass, compile all .scss files found in the paths defined in settings.STATICFILES_FINDERS


Quickstart

1.- It's available on PyPI, so you can install it using pip

pip install django-sass-compiler

2.- Add sass-compiler to your INSTALLED_APPS

INSTALLED_APPS = [
    ...,
    'sass-compiler',
]

3.- Run sass-compiler

python manage.py sass-compiler

or combine with runserver command, useful with --watch argument.

python manage.py runserver & python manage.py sass-compiler --watch

Arguments:

All arguments are optional and combinable

  • -s, --style

    Coding style of the compiled result. choose one of: 'nested', 'expanded' (default), 'compact', 'compressed'

  • -p, --precision

    Sets the number of digits of precision. 8 by default.

  • -nb, --no-build

    Don't create build folder. 'app/static/app/css/main.css' instead of 'app/static/app/build/css/main.css'

  • -m, --map

    Build a source map.

  • -c, --clean

    Remove old files before new compilation.

    NOTE: This action will only take effect on current destination folder (--no-build).

  • -w, --watch

    Watch and compile files when .scss files are changed.

@import

To @import .scss files you must use absolute paths unless the files are at the same or less level, in that case you can use relative paths

some-app/
  |- static/
     |- some-app/
        |- scss/
            |- pages
                |- _timeline.scss
            |- _colors.scss
            |- style.scss
other-app/
  |- static/
     |- other-app/
        |- scss/
            |- _variables.scss

some-app/style.scss

@import 'other-app/scss/variables';
@import 'pages/timeline';
@import 'colors'
### WRONG ###
@import '../../variables'; 

Outputs

Standard output:
$ python manage.py sass-compiler 
app/
  |- static/
     |- app/
        |- scss/
           |- _colors.scss
           |- style.scss
        |- build/
           |- css/
              |- style.css
With some argument output:
python manage.py sass-compiler --style=compressed --no-build --map
app/
  |- static/
     |- app/
        |- scss/
           |- _colors.scss
           |- style.scss
        |- css/
           |- style.min.css
           |- style.css.map

Licensing

The project is licensed under the BSD License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

django_sass_compiler-0.1.1-py3-none-any.whl (7.8 kB view details)

Uploaded Python 3

File details

Details for the file django_sass_compiler-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: django_sass_compiler-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 7.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.1

File hashes

Hashes for django_sass_compiler-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 963d54b83f61a757549c8c0aed1e003b5183102813c72e089d53ac642deebc66
MD5 c985e337cea652960082dd4e54020201
BLAKE2b-256 ee14edf9d2d7123c27ee860e614d819670450f8c1703ee54057d7862ac204906

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page