webassets is the asset management application for Python web development — use it to merge and compress your JavaScript and CSS files.

learn more… | top users | synonyms

1
vote
1answer
23 views

GAE: Flask/webassets throws an expection on {% extends “base.html” %}

I am trying to port my existing flask app into google app engine. After a lot of reading and solving issues, I came across a problem I am completely stuck with: Upon starting the app on my local ...
2
votes
2answers
22 views

Why won't python webassets pyscss regenerate css from scss files in debug mode?

I'm using the pyscss compiler in the python webassets library with webassets debug configs all set to true. But when I make changes to an scss file and reload the page that includes the generated css ...
0
votes
0answers
10 views

How to configure filters in django-assets

Webassets allows to configure filters, as described in their docs. How can I pass configuration options in django-assets? For example for JST filter (JST_COMPILER, JST_NAMESPACE etc)?
1
vote
0answers
7 views

How to use a certain file/bundle only in production mode?

I'm using webassets in a project that has some files which should be only included in production mode but not in debug mode. Is there any clean way to specify this for a bundle or do I have to write ...
1
vote
1answer
77 views

Webassets - exclude file in bundle

I have a directory and want to exclude a few files like Ant does, is this possible with webassets? Or does if bundle could take a list or tuple, which doesn't seem to be the case?
3
votes
0answers
106 views

Flask-Assets and Flask-Testing throws RegisterError: Another bundle is already registered

I have my Flask app which uses Flask-Assets and while trying to run the unittest cases, except the first testcase, others fails with the following RegisterError. ...