anvil.concat
Advanced tools
Comparing version 0.0.3 to 0.0.4
/* | ||
anvil.concat - An anvil core plugin that provides file concatenation support | ||
version: 0.0.3 | ||
version: 0.0.4 | ||
author: Alex Robson <alex@sharplearningcurve.com> (http://sharplearningcurve.com) | ||
@@ -138,3 +138,3 @@ copyright: 2011 - 2012 | ||
content = _.map( list.imports, function( child ) { | ||
return "- import: '" + child + "'"; | ||
return "- import: '" + child.replace( /[\\]{2}/g, "/" ) + "'"; | ||
} ).join( "\n" ); | ||
@@ -141,0 +141,0 @@ anvil.fs.write( [ file.workingPath, file.name ], content, done ); |
@@ -5,3 +5,3 @@ { | ||
"description": "An anvil core plugin that provides file concatenation support", | ||
"version": "0.0.3", | ||
"version": "0.0.4", | ||
"repository": { | ||
@@ -8,0 +8,0 @@ "type": "git", |
@@ -129,3 +129,3 @@ var yaml = require( "yaml-js" ); | ||
content = _.map( list.imports, function( child ) { | ||
return "- import: '" + child + "'"; | ||
return "- import: '" + child.replace( /[\\]{2}/g, "/" ) + "'"; | ||
} ).join( "\n" ); | ||
@@ -132,0 +132,0 @@ anvil.fs.write( [ file.workingPath, file.name ], content, done ); |
9771