Skip to content

Commit

Permalink
deps: npmlog@6.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wraithgar committed Feb 9, 2022
1 parent ab92699 commit 1c0d069
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 34 deletions.
18 changes: 11 additions & 7 deletions node_modules/are-we-there-yet/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "are-we-there-yet",
"version": "2.0.0",
"version": "3.0.0",
"description": "Keep track of the overall completion of many disparate processes",
"main": "lib/index.js",
"scripts": {
Expand All @@ -13,7 +13,9 @@
"preversion": "npm test",
"postversion": "npm publish",
"prepublishOnly": "git push origin --follow-tags",
"snap": "tap"
"snap": "tap",
"postlint": "npm-template-check",
"template-copy": "npm-template-copy --force"
},
"repository": {
"type": "git",
Expand All @@ -26,9 +28,9 @@
},
"homepage": "https://github.com/npm/are-we-there-yet",
"devDependencies": {
"@npmcli/eslint-config": "^1.0.0",
"@npmcli/template-oss": "^1.0.2",
"eslint": "^7.32.0",
"@npmcli/eslint-config": "^2.0.0",
"@npmcli/template-oss": "^2.7.1",
"eslint": "^8.8.0",
"eslint-plugin-node": "^11.1.0",
"tap": "^15.0.9"
},
Expand All @@ -41,13 +43,15 @@
"lib"
],
"engines": {
"node": ">=10"
"node": "^12.13.0 || ^14.15.0 || >=16"
},
"tap": {
"branches": 68,
"statements": 92,
"functions": 86,
"lines": 92
},
"templateVersion": "1.0.2"
"templateOSS": {
"version": "2.7.1"
}
}
9 changes: 5 additions & 4 deletions node_modules/npmlog/lib/log.js
Original file line number Diff line number Diff line change
Expand Up @@ -292,8 +292,9 @@ log.emitLog = function (m) {
var disp = log.disp[m.level] != null ? log.disp[m.level] : m.level
this.clearProgress()
m.message.split(/\r?\n/).forEach(function (line) {
if (this.heading) {
this.write(this.heading, this.headingStyle)
var heading = this.heading
if (heading) {
this.write(heading, this.headingStyle)
this.write(' ')
}
this.write(disp, log.style[m.level])
Expand Down Expand Up @@ -390,11 +391,11 @@ log.style = {}
log.levels = {}
log.disp = {}
log.addLevel('silly', -Infinity, { inverse: true }, 'sill')
log.addLevel('verbose', 1000, { fg: 'blue', bg: 'black' }, 'verb')
log.addLevel('verbose', 1000, { fg: 'cyan', bg: 'black' }, 'verb')
log.addLevel('info', 2000, { fg: 'green' })
log.addLevel('timing', 2500, { fg: 'green', bg: 'black' })
log.addLevel('http', 3000, { fg: 'green', bg: 'black' })
log.addLevel('notice', 3500, { fg: 'blue', bg: 'black' })
log.addLevel('notice', 3500, { fg: 'cyan', bg: 'black' })
log.addLevel('warn', 4000, { fg: 'black', bg: 'yellow' }, 'WARN')
log.addLevel('error', 5000, { fg: 'red', bg: 'black' }, 'ERR!')
log.addLevel('silent', Infinity)
Expand Down
15 changes: 9 additions & 6 deletions node_modules/npmlog/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"author": "GitHub Inc.",
"name": "npmlog",
"description": "logger for npm",
"version": "6.0.0",
"version": "6.0.1",
"repository": {
"type": "git",
"url": "https://github.com/npm/npmlog.git"
Expand All @@ -23,24 +23,27 @@
"preversion": "npm test",
"postversion": "npm publish",
"prepublishOnly": "git push origin --follow-tags",
"snap": "tap"
"snap": "tap",
"template-copy": "npm-template-copy --force"
},
"dependencies": {
"are-we-there-yet": "^2.0.0",
"are-we-there-yet": "^3.0.0",
"console-control-strings": "^1.1.0",
"gauge": "^4.0.0",
"set-blocking": "^2.0.0"
},
"devDependencies": {
"@npmcli/template-oss": "^2.3.0",
"tap": "^15.0.9"
"@npmcli/template-oss": "^2.7.1",
"tap": "^15.1.6"
},
"license": "ISC",
"templateVersion": "2.3.0",
"engines": {
"node": "^12.13.0 || ^14.15.0 || >=16"
},
"tap": {
"branches": 95
},
"templateOSS": {
"version": "2.7.1"
}
}
32 changes: 16 additions & 16 deletions package-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@
"npm-profile": "^6.0.0",
"npm-registry-fetch": "^12.0.2",
"npm-user-validate": "^1.0.1",
"npmlog": "^6.0.0",
"npmlog": "^6.0.1",
"opener": "^1.5.2",
"pacote": "^12.0.3",
"parse-conflict-json": "^2.0.1",
Expand Down Expand Up @@ -1241,16 +1241,16 @@
"inBundle": true
},
"node_modules/are-we-there-yet": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz",
"integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==",
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.0.tgz",
"integrity": "sha512-0GWpv50YSOcLXaN6/FAKY3vfRbllXWV2xvfA/oKJF8pzFhWXPV+yjhJXDBbjscDYowv7Yw1A3uigpzn5iEGTyw==",
"inBundle": true,
"dependencies": {
"delegates": "^1.0.0",
"readable-stream": "^3.6.0"
},
"engines": {
"node": ">=10"
"node": "^12.13.0 || ^14.15.0 || >=16"
}
},
"node_modules/arg": {
Expand Down Expand Up @@ -5670,12 +5670,12 @@
"inBundle": true
},
"node_modules/npmlog": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.0.tgz",
"integrity": "sha512-03ppFRGlsyUaQFbGC2C8QWJN/C/K7PsfyD9aQdhVKAQIH4sQBc8WASqFBP7O+Ut4d2oo5LoeoboB3cGdBZSp6Q==",
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.1.tgz",
"integrity": "sha512-BTHDvY6nrRHuRfyjt1MAufLxYdVXZfd099H4+i1f0lPywNQyI4foeNXJRObB/uy+TYqUW0vAD9gbdSOXPst7Eg==",
"inBundle": true,
"dependencies": {
"are-we-there-yet": "^2.0.0",
"are-we-there-yet": "^3.0.0",
"console-control-strings": "^1.1.0",
"gauge": "^4.0.0",
"set-blocking": "^2.0.0"
Expand Down Expand Up @@ -11814,9 +11814,9 @@
"integrity": "sha1-+cjBN1fMHde8N5rHeyxipcKGjEA="
},
"are-we-there-yet": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz",
"integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==",
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.0.tgz",
"integrity": "sha512-0GWpv50YSOcLXaN6/FAKY3vfRbllXWV2xvfA/oKJF8pzFhWXPV+yjhJXDBbjscDYowv7Yw1A3uigpzn5iEGTyw==",
"requires": {
"delegates": "^1.0.0",
"readable-stream": "^3.6.0"
Expand Down Expand Up @@ -15295,11 +15295,11 @@
"integrity": "sha512-uQwcd/tY+h1jnEaze6cdX/LrhWhoBxfSknxentoqmIuStxUExxjWd3ULMLFPiFUrZKbOVMowH6Jq2FRWfmhcEw=="
},
"npmlog": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.0.tgz",
"integrity": "sha512-03ppFRGlsyUaQFbGC2C8QWJN/C/K7PsfyD9aQdhVKAQIH4sQBc8WASqFBP7O+Ut4d2oo5LoeoboB3cGdBZSp6Q==",
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.1.tgz",
"integrity": "sha512-BTHDvY6nrRHuRfyjt1MAufLxYdVXZfd099H4+i1f0lPywNQyI4foeNXJRObB/uy+TYqUW0vAD9gbdSOXPst7Eg==",
"requires": {
"are-we-there-yet": "^2.0.0",
"are-we-there-yet": "^3.0.0",
"console-control-strings": "^1.1.0",
"gauge": "^4.0.0",
"set-blocking": "^2.0.0"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
"npm-profile": "^6.0.0",
"npm-registry-fetch": "^12.0.2",
"npm-user-validate": "^1.0.1",
"npmlog": "^6.0.0",
"npmlog": "^6.0.1",
"opener": "^1.5.2",
"pacote": "^12.0.3",
"parse-conflict-json": "^2.0.1",
Expand Down

0 comments on commit 1c0d069

Please sign in to comment.