grunt-fs-inline
Advanced tools
Comparing version 0.0.2 to 0.0.3
{ | ||
"name": "grunt-fs-inline", | ||
"version": "0.0.2", | ||
"version": "0.0.3", | ||
"description": "A plugin that makes the brfs transform usable without browserify.", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/vanruesc/grunt-fs-inline", |
@@ -35,3 +35,3 @@ var dirname = require("path").dirname; | ||
ts = brfs(f.src, options.brfs); | ||
ws = fs.createWriteStream(f.dest, {flags: "a"}); | ||
ws = fs.createWriteStream(f.dest); | ||
rs.pipe(ts).pipe(ws).on("finish", function(error) { | ||
@@ -38,0 +38,0 @@ |
7477