diff --git a/HISTORY.md b/HISTORY.md index 37c47218..50909413 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -2,6 +2,7 @@ **Table of Contents** *generated with [DocToc](http://doctoc.herokuapp.com/)* +- [1.6.4](#164) - [1.6.3](#163) - [1.6.2](#162) - [1.6.1](#161) @@ -44,6 +45,10 @@ +### 1.6.4 + ++ Workaround https://github.com/substack/brfs/issues/39 + ### 1.6.3 + Convert to use new es6/7 features and transpile with babel diff --git a/lib/template/index.js b/lib/template/index.js index 42710b71..3d118a03 100644 --- a/lib/template/index.js +++ b/lib/template/index.js @@ -1,7 +1,7 @@ import Handlebars from 'handlebars'; -import fs from 'fs'; import { format } from 'util'; import * as ns from '../namespace'; +let fs = require('fs'); /** * @param {Object} filter looks like diff --git a/package.json b/package.json index dc00ad96..597b4b27 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "dav", - "version": "1.6.3", + "version": "1.6.4", "author": "Gareth Aye [:gaye] ", "description": "WebDAV, CalDAV, and CardDAV client for nodejs and the browser", "license": "MPL-2.0",