Elm filter for webassets
Project description
Elm filter for webassets
Filter for compiling Elm files using webassets.
Install
pip install webassets-elm
As of version 0.2.0, this plugin requires Elm 0.19 or newer (building with elm make).
If you need to build your Elm project with elm-make (Elm 0.18 and older), you can pin your webassets-elm package to version 0.1.7.
Basic usage
from webassets.filter import register_filter
from webassets_elm import Elm
register_filter(Elm)
Settings
Optionally as an evironment variable you can have:
ELM_BIN: alternative path to elm if it is not available globally (e.g. node_modules/.bin/elm).
ELM_OPTIMIZE: enable the Elm compiler optimization option. Recommended for production output.
ELM_DEBUG: enable the Elm compiler debug option.
Examples
Flask with flask-assets
from flask import Flask
from flask_assets import Bundle, Environment
from webassets.filter import register_filter
from webassets_elm import Elm
app = Flask(__name__)
register_filter(Elm)
assets = Environment(app)
elm_js = Bundle('elm/main.elm', filters=('elm',), output='app.js')
assets.register('elm_js', elm_js)
Django with django-assets
from django_assets import Bundle, register
from webassets.filter import register_filter
from webassets_elm import Elm
register_filter(Elm)
elm_js = Bundle('elm/main.elm', filters=('elm',), output='app.js')
register('elm_js', elm_js)
Contributing
Feel free to report an issue, open a pull request, or drop a line.
Don’t forget to write and run tests, and format code with Black:
python setup.py test black .
Please note you need elm binary available to run tests, here you can find different ways to install Elm.
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
Built Distribution
File details
Details for the file webassets-elm-0.2.1.tar.gz
.
File metadata
- Download URL: webassets-elm-0.2.1.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eca2c366f2cd89497a1e2d28ba2828ebbc778d5073b5f1d1c7879a3f1f042f23 |
|
MD5 | aa1839cec58bded6f652ee187c479f0a |
|
BLAKE2b-256 | 74c4ed24a320d1d6a191646e6e301beb5f462624f3bcd3ae3a975f5235cad54a |
File details
Details for the file webassets_elm-0.2.1-py3-none-any.whl
.
File metadata
- Download URL: webassets_elm-0.2.1-py3-none-any.whl
- Upload date:
- Size: 4.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1b0e32c6c787203d3c573841055e9c435ba72d9fca54eab502e2e85438a01a86 |
|
MD5 | 6c2967a0af8a32a18239079101e943aa |
|
BLAKE2b-256 | 94e4f825235374bc638cd49329b2a678293a266d6e3b4f9f1f7e5e5bc1c3f5d5 |