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:
commit
40c4b40c77
3 changed files with 3 additions and 3 deletions
|
@ -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",
|
||||
|
|
|
@ -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
BIN
yarn.lock
Binary file not shown.
Loading…
Reference in a new issue