package: Switch from mv to mv-lite
This commit is contained in:
parent
29019b3145
commit
6b4f927f4f
2 changed files with 5 additions and 5 deletions
|
@ -89,7 +89,7 @@ if (process.env.BUNYAN_TEST_NO_SAFE_JSON_STRINGIFY) {
|
|||
|
||||
// The 'mv' module is required for rotating-file stream support.
|
||||
try {
|
||||
var mv = require('mv' + '');
|
||||
var mv = require('mv-lite' + '');
|
||||
} catch (e) {
|
||||
mv = null;
|
||||
}
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"name": "bunyan",
|
||||
"name": "bunyan-lite",
|
||||
"version": "2.0.2",
|
||||
"description": "a JSON logging library for node.js services",
|
||||
"author": "Trent Mick <trentm@gmail.com> (http://trentm.com)",
|
||||
"description": "a lite version of bunyan, a JSON logging library for node.js services without dtrace or moment",
|
||||
"author": "Jonatan Nilsson <jonatan@nilsson.is> (https://nfp.is)",
|
||||
"main": "./lib/bunyan.js",
|
||||
"bin": {
|
||||
"bunyan": "./bin/bunyan"
|
||||
|
@ -21,7 +21,7 @@
|
|||
},
|
||||
"// mv": "required for RotatingFileStream",
|
||||
"optionalDependencies": {
|
||||
"mv": "~2",
|
||||
"mv-lite": "~1",
|
||||
"safe-json-stringify": "~1"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
|
Loading…
Reference in a new issue