diff piecrust/appconfigdefaults.py @ 1138:c8fb7b024faa

bake: Disable `uglifyjs` and `cleancss` by default. There's a good chance a new user doesn't have them installed.
author Ludovic Chabant <ludovic@chabant.com>
date Sun, 20 May 2018 22:20:00 -0700
parents 45ad976712ec
children a9a592f655e3
line wrap: on
line diff
--- a/piecrust/appconfigdefaults.py	Tue Apr 24 21:27:46 2018 -0700
+++ b/piecrust/appconfigdefaults.py	Sun May 20 22:20:00 2018 -0700
@@ -40,6 +40,11 @@
         'cache_time': 28800,
         'enable_debug_info': True,
         'show_debug_info': False
+    }),
+    'pipelines': collections.OrderedDict({
+        'asset': collections.OrderedDict({
+            'processors': ['all', '-uglifyjs', '-cleancss']
+        })
     })
 })