From e33b3b24b75fa9196ab38e0625ec960c7045e97e Mon Sep 17 00:00:00 2001 From: Christopher Charbonneau Wells Date: Mon, 21 Aug 2017 16:23:45 -0400 Subject: [PATCH] Remove compress as a default action and use uncompressed assets for now. --- babyblotter/templates/babyblotter/base.html | 8 ++++---- gulpfile.js/tasks/default.js | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/babyblotter/templates/babyblotter/base.html b/babyblotter/templates/babyblotter/base.html index 743ce5d1..9b22106d 100644 --- a/babyblotter/templates/babyblotter/base.html +++ b/babyblotter/templates/babyblotter/base.html @@ -7,16 +7,16 @@ {% block title %}{% endblock %} | Baby Blotter - - + + {% block nav %}{% endblock %} {% block page %}{% endblock %} - - + + {% block javascript %}{% endblock %} \ No newline at end of file diff --git a/gulpfile.js/tasks/default.js b/gulpfile.js/tasks/default.js index bcd85d10..d498fa6f 100644 --- a/gulpfile.js/tasks/default.js +++ b/gulpfile.js/tasks/default.js @@ -1,4 +1,4 @@ const gulp = require('gulp'); -gulp.task('default', ['scripts', 'styles', 'compress', 'extras']); +gulp.task('default', ['scripts', 'styles', 'extras']);