Skip to content

Commit

Permalink
Replace fs-promise with fs-extra (#199)
Browse files Browse the repository at this point in the history
* Replace fs-promise with fs-extra

* pin fs-extra version

* remove yarn.lock
  • Loading branch information
egoist authored and leo committed May 18, 2017
1 parent bcb272e commit ea03046
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/render.js
Expand Up @@ -4,7 +4,7 @@ const path = require('path')
// Packages
const pathType = require('path-type')
const filesize = require('filesize')
const fs = require('fs-promise')
const fs = require('fs-extra')
const { coroutine } = require('bluebird')

// Ours
Expand Down
2 changes: 1 addition & 1 deletion lib/server.js
Expand Up @@ -6,7 +6,7 @@ const { parse, format } = require('url')
const micro = require('micro')
const auth = require('basic-auth')
const { red } = require('chalk')
const fs = require('fs-promise')
const fs = require('fs-extra')
const pathType = require('path-type')
const mime = require('mime-types')
const stream = require('send')
Expand Down
2 changes: 1 addition & 1 deletion lib/view.js
Expand Up @@ -2,7 +2,7 @@
const path = require('path')

// Packages
const fs = require('fs-promise')
const fs = require('fs-extra')
const { compile } = require('handlebars')

module.exports = () => {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -59,7 +59,7 @@
"dargs": "5.1.0",
"detect-port": "1.1.2",
"filesize": "3.5.9",
"fs-promise": "2.0.3",
"fs-extra": "3.0.1",
"handlebars": "4.0.8",
"ip": "1.1.5",
"micro": "7.3.3",
Expand Down

0 comments on commit ea03046

Please sign in to comment.