0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-30 22:34:10 -05:00

Merge pull request #1290 from DanielRuf/chore/replace-date-fns-with-dayjs

chore: replace date-fns with dayjs
This commit is contained in:
Juan Picado @jotadeveloper 2019-04-29 07:27:56 +02:00 committed by GitHub
commit 40c4b40c77
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -27,7 +27,7 @@
"compression": "1.7.4",
"cookies": "0.7.3",
"cors": "2.8.5",
"date-fns": "1.30.1",
"dayjs": "1.8.13",
"express": "4.16.4",
"global": "4.3.2",
"handlebars": "4.1.2",

View file

@ -10,7 +10,7 @@ const Stream = require('stream');
const chalk = require('chalk');
const pkgJSON = require('../../package.json');
const _ = require('lodash');
const { format } = require('date-fns');
const dayjs = require('dayjs');
/**
* Match the level based on buyan severity scale
@ -114,7 +114,7 @@ function setup(logs) {
} else if (target.format === 'pretty-timestamped') {
// making fake stream for pretty printing
stream.write = obj => {
destination.write(`[${format(obj.time, 'YYYY-MM-DD HH:mm:ss')}] ${print(obj.level, obj.msg, obj, destinationIsTTY)}\n`);
destination.write(`[${dayjs(obj.time).format('YYYY-MM-DD HH:mm:ss')}] ${print(obj.level, obj.msg, obj, destinationIsTTY)}\n`);
};
} else {
stream.write = obj => {

BIN
yarn.lock

Binary file not shown.