django-libsass icon indicating copy to clipboard operation
django-libsass copied to clipboard

A django-compressor filter to compile SASS files using libsass

Results 6 django-libsass issues
Sort by recently updated
recently updated
newest added

From my reading of the docs, I thought I could add the following to my settings, ``` STATICFILES_DIRS = ( ('css/bootstrap', _Path(BASE_DIR, 'node_modules/bootstrap-sass/assets/stylesheets/bootstrap')), ('scss', _Path(BASE_DIR, 'django-site/django_app/static/scss')), ) STATICFILES_FINDERS = (...

libsass-python 0.10 introduced [import callbacks](https://hongminhee.org/libsass-python/sass.html#id5), which allow us to handle `@import` lines through custom code. This means we could potentially support non-filesystem-based storage backends that don't directly expose a libsass-usable...

Hi, I have a question about the `LIBSASS_SOURCEMAPS` setting behavior. When `COMPRESS_ENABLED` = False, source maps work as expected — Chrome DevTools shows all SCSS source files in the map...

setuptools was producing the following warning: ``` Usage of dash-separated 'license-file' will not be supported in future versions. Please use the underscore name 'license_file' instead. By 2025-Mar-03, you need to...

Those files are required for distribution packaging, as we need to run the tests during the package build.

Instead of import paths, use the importer callback so we can handle static paths prefixes, and possibly also non-filesystem storage. This is more complicated than anticipated, because we have to...