Skip to content
This repository has been archived by the owner on Jul 3, 2019. It is now read-only.

Commit

Permalink
feat(dependencies): Switch to move-concurrently (#77)
Browse files Browse the repository at this point in the history
@npmcorp/move was renamed.
  • Loading branch information
iarna authored and zkat committed Mar 31, 2017
1 parent d8ac5aa commit dc6482d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/util/move-file.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function moveFile (src, dest) {
throw err
}
// file doesn't already exist! let's try a rename -> copy fallback
if (!move) { move = require('@npmcorp/move') }
if (!move) { move = require('move-concurrently') }
return move(src, dest, { BB, fs })
})
})
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
],
"license": "CC0-1.0",
"dependencies": {
"@npmcorp/move": "^1.0.0",
"move-concurrently": "^1.0.0",
"bluebird": "^3.4.7",
"checksum-stream": "^1.0.2",
"chownr": "^1.0.1",
Expand Down

0 comments on commit dc6482d

Please sign in to comment.