From 7bb0058700eb8cc6da896105d25ce78983001123 Mon Sep 17 00:00:00 2001 From: chrisbreiding Date: Sun, 20 Jul 2014 18:58:02 -0400 Subject: [PATCH] fix bug and bump version to 0.2.1 --- package.json | 2 +- src/tasks/html.coffee | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 24e7823..a5c762b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "zunder", - "version": "0.2.0", + "version": "0.2.1", "description": "A front-end build tool that makes developing apps with Ember, CoffeeScript, Browserify, and Stylus a breeze", "homepage": "https://github.com/chrisbreiding/zunder", "repository": "git://github.com/chrisbreiding/zunder.git", diff --git a/src/tasks/html.coffee b/src/tasks/html.coffee index ee4e564..cf124c0 100644 --- a/src/tasks/html.coffee +++ b/src/tasks/html.coffee @@ -1,4 +1,5 @@ gulp = require 'gulp' +watch = require 'gulp-watch' fs = require 'fs' build = require '../lib/build-index' @@ -8,6 +9,7 @@ module.exports = (config)-> watch(glob: "#{config.srcDir}/index.hbs") .pipe build(['app.js'], ['app.css']) .pipe gulp.dest(config.devDir) + return scriptsManifest = "#{config.prodDir}/scripts-manifest.json" stylesheetsManifest = "#{config.prodDir}/stylesheets-manifest.json"