Skip to content

Commit 7bb0058

Browse files
committed
fix bug and bump version to 0.2.1
1 parent 6575220 commit 7bb0058

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "zunder",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"description": "A front-end build tool that makes developing apps with Ember, CoffeeScript, Browserify, and Stylus a breeze",
55
"homepage": "https://github.com/chrisbreiding/zunder",
66
"repository": "git://github.com/chrisbreiding/zunder.git",

src/tasks/html.coffee

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
gulp = require 'gulp'
2+
watch = require 'gulp-watch'
23
fs = require 'fs'
34
build = require '../lib/build-index'
45

@@ -8,6 +9,7 @@ module.exports = (config)->
89
watch(glob: "#{config.srcDir}/index.hbs")
910
.pipe build(['app.js'], ['app.css'])
1011
.pipe gulp.dest(config.devDir)
12+
return
1113

1214
scriptsManifest = "#{config.prodDir}/scripts-manifest.json"
1315
stylesheetsManifest = "#{config.prodDir}/stylesheets-manifest.json"

0 commit comments

Comments
 (0)