From 15e5d8f1456adb0db577ef5a0798c8a6356d5e63 Mon Sep 17 00:00:00 2001 From: Chris Heathcote Date: Thu, 3 Dec 2015 16:01:21 +0000 Subject: [PATCH] Fixed flask-assets to look for css changes and rebuild --- app/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/__init__.py b/app/__init__.py index fc5c73b8e..c0c0cd758 100644 --- a/app/__init__.py +++ b/app/__init__.py @@ -96,7 +96,8 @@ def init_asset_environment(app): assets.Bundle( 'govuk_template/govuk-template.scss', filters='scss', - output='stylesheets/govuk-template.css' + output='stylesheets/govuk-template.css', + depends='*.scss' ) )