A development toolkit for compiling sass and coffee script files.
Project description
A development toolkit for compiling sass and coffee script files.
Installation
`pip install -U django-assets-toolkit`
Usage
Add assetstoolkit in your INSTALLED_APPS settings, then you can load the assetstoolkit from your template files which has three template tags:
scss
less
coffee
You can use it in your templates like:
{% load assetstoolkit %}
...
<link rel="stylesheet" type="text/css" href="{% scss 'css/styles.scss' %}">
<link rel="stylesheet" type="text/css" href="{% less 'css/styles.less' %}">
<script type="text/javascript" src="{% coffee 'src/scripts.coffee' %}"></script>
Have a look at settings.py to see more options.
Note
It will put the compiled sass file in the same directory of .scss file while it’ll put the compiled coffee script on the same level where the script is contained but within js directory. If you want the compiled script to be on a different directory just override COFFEE_OUTPUT settings which should be sibling of directory where script is located.
For the CoffeeScript package to work, you need to actually have the Coffee Script binary in your system. The same is true for Less.
License
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
File details
Details for the file django-assets-toolkit-0.1.2.tar.gz
.
File metadata
- Download URL: django-assets-toolkit-0.1.2.tar.gz
- Upload date:
- Size: 3.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 79c8a37e9fd331574fcbb69ff58246cc5bb63fe129646bb85848f9b87f03561d |
|
MD5 | 0a9179136e0a4012e87675267885ffbd |
|
BLAKE2b-256 | 53ce9f2022940d1ad7e883baad027efd496abc0a2c804ffdf0c7f89f48ac7a51 |