11django-sass
22===========
33
4- The absolute simplest way to use [ Sass] ( ) with Django. Pure Python,
5- minimal dependencies, and no special configuration required.
4+ The absolute simplest way to use [ Sass] ( https://sass-lang.com/ ) with Django.
5+ Pure Python, minimal dependencies, and no special configuration required.
66
77[ Source code on GitHub] ( https://github.com/coderedcorp/wagtail-cache )
88
3434-----
3535
3636In your app's static files, use Sass as normal. The only difference is that
37- you should not traverse upwards using ` ../ ` in ` @import ` statements. For example:
37+ you can ** not** traverse upwards using ` ../ ` in ` @import ` statements. For example:
3838
3939```
4040app1/
@@ -145,8 +145,6 @@ Limitations
145145
146146* Only supports ` -t ` and ` -p ` options similar to ` pysassc ` . Ideally ` django-sass ` will
147147 be as similar as possible to the ` pysassc ` command line interface.
148- ** Note:** if using with Bootstrap, specify ` -p 8 ` as Bootstrap requires higher floating
149- point precision to work correctly.
150148
151149Feel free to file an issue or make a pull request to improve any of these limitations. 🐱💻
152150
@@ -170,3 +168,17 @@ other packages that require compilation to install.
170168
171169django-sass only depends on libsass (which provides pre-built wheels for Windows, Mac,
172170and Linux), and of course Django (any version).
171+
172+
173+ Changelog
174+ ---------
175+
176+ #### 0.1.2
177+ * Fix: Write compiled CSS files as UTF-8.
178+ * Change: Default ` -p ` precision from 5 to 8 for better support building Bootstrap CSS.
179+
180+ #### 0.1.1
181+ * Fix: Create full file path if not exists when specifying a file output.
182+
183+ #### 0.1.0
184+ * Initial release
0 commit comments