Skip to content

Commit 1c0d069

Browse files
committed
1 parent ab92699 commit 1c0d069

File tree

5 files changed

+42
-34
lines changed

5 files changed

+42
-34
lines changed

node_modules/are-we-there-yet/package.json

+11-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "are-we-there-yet",
3-
"version": "2.0.0",
3+
"version": "3.0.0",
44
"description": "Keep track of the overall completion of many disparate processes",
55
"main": "lib/index.js",
66
"scripts": {
@@ -13,7 +13,9 @@
1313
"preversion": "npm test",
1414
"postversion": "npm publish",
1515
"prepublishOnly": "git push origin --follow-tags",
16-
"snap": "tap"
16+
"snap": "tap",
17+
"postlint": "npm-template-check",
18+
"template-copy": "npm-template-copy --force"
1719
},
1820
"repository": {
1921
"type": "git",
@@ -26,9 +28,9 @@
2628
},
2729
"homepage": "https://github.com/npm/are-we-there-yet",
2830
"devDependencies": {
29-
"@npmcli/eslint-config": "^1.0.0",
30-
"@npmcli/template-oss": "^1.0.2",
31-
"eslint": "^7.32.0",
31+
"@npmcli/eslint-config": "^2.0.0",
32+
"@npmcli/template-oss": "^2.7.1",
33+
"eslint": "^8.8.0",
3234
"eslint-plugin-node": "^11.1.0",
3335
"tap": "^15.0.9"
3436
},
@@ -41,13 +43,15 @@
4143
"lib"
4244
],
4345
"engines": {
44-
"node": ">=10"
46+
"node": "^12.13.0 || ^14.15.0 || >=16"
4547
},
4648
"tap": {
4749
"branches": 68,
4850
"statements": 92,
4951
"functions": 86,
5052
"lines": 92
5153
},
52-
"templateVersion": "1.0.2"
54+
"templateOSS": {
55+
"version": "2.7.1"
56+
}
5357
}

node_modules/npmlog/lib/log.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -292,8 +292,9 @@ log.emitLog = function (m) {
292292
var disp = log.disp[m.level] != null ? log.disp[m.level] : m.level
293293
this.clearProgress()
294294
m.message.split(/\r?\n/).forEach(function (line) {
295-
if (this.heading) {
296-
this.write(this.heading, this.headingStyle)
295+
var heading = this.heading
296+
if (heading) {
297+
this.write(heading, this.headingStyle)
297298
this.write(' ')
298299
}
299300
this.write(disp, log.style[m.level])
@@ -390,11 +391,11 @@ log.style = {}
390391
log.levels = {}
391392
log.disp = {}
392393
log.addLevel('silly', -Infinity, { inverse: true }, 'sill')
393-
log.addLevel('verbose', 1000, { fg: 'blue', bg: 'black' }, 'verb')
394+
log.addLevel('verbose', 1000, { fg: 'cyan', bg: 'black' }, 'verb')
394395
log.addLevel('info', 2000, { fg: 'green' })
395396
log.addLevel('timing', 2500, { fg: 'green', bg: 'black' })
396397
log.addLevel('http', 3000, { fg: 'green', bg: 'black' })
397-
log.addLevel('notice', 3500, { fg: 'blue', bg: 'black' })
398+
log.addLevel('notice', 3500, { fg: 'cyan', bg: 'black' })
398399
log.addLevel('warn', 4000, { fg: 'black', bg: 'yellow' }, 'WARN')
399400
log.addLevel('error', 5000, { fg: 'red', bg: 'black' }, 'ERR!')
400401
log.addLevel('silent', Infinity)

node_modules/npmlog/package.json

+9-6
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"author": "GitHub Inc.",
33
"name": "npmlog",
44
"description": "logger for npm",
5-
"version": "6.0.0",
5+
"version": "6.0.1",
66
"repository": {
77
"type": "git",
88
"url": "https://github.com/npm/npmlog.git"
@@ -23,24 +23,27 @@
2323
"preversion": "npm test",
2424
"postversion": "npm publish",
2525
"prepublishOnly": "git push origin --follow-tags",
26-
"snap": "tap"
26+
"snap": "tap",
27+
"template-copy": "npm-template-copy --force"
2728
},
2829
"dependencies": {
29-
"are-we-there-yet": "^2.0.0",
30+
"are-we-there-yet": "^3.0.0",
3031
"console-control-strings": "^1.1.0",
3132
"gauge": "^4.0.0",
3233
"set-blocking": "^2.0.0"
3334
},
3435
"devDependencies": {
35-
"@npmcli/template-oss": "^2.3.0",
36-
"tap": "^15.0.9"
36+
"@npmcli/template-oss": "^2.7.1",
37+
"tap": "^15.1.6"
3738
},
3839
"license": "ISC",
39-
"templateVersion": "2.3.0",
4040
"engines": {
4141
"node": "^12.13.0 || ^14.15.0 || >=16"
4242
},
4343
"tap": {
4444
"branches": 95
45+
},
46+
"templateOSS": {
47+
"version": "2.7.1"
4548
}
4649
}

package-lock.json

+16-16
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@
137137
"npm-profile": "^6.0.0",
138138
"npm-registry-fetch": "^12.0.2",
139139
"npm-user-validate": "^1.0.1",
140-
"npmlog": "^6.0.0",
140+
"npmlog": "^6.0.1",
141141
"opener": "^1.5.2",
142142
"pacote": "^12.0.3",
143143
"parse-conflict-json": "^2.0.1",
@@ -1241,16 +1241,16 @@
12411241
"inBundle": true
12421242
},
12431243
"node_modules/are-we-there-yet": {
1244-
"version": "2.0.0",
1245-
"resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz",
1246-
"integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==",
1244+
"version": "3.0.0",
1245+
"resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.0.tgz",
1246+
"integrity": "sha512-0GWpv50YSOcLXaN6/FAKY3vfRbllXWV2xvfA/oKJF8pzFhWXPV+yjhJXDBbjscDYowv7Yw1A3uigpzn5iEGTyw==",
12471247
"inBundle": true,
12481248
"dependencies": {
12491249
"delegates": "^1.0.0",
12501250
"readable-stream": "^3.6.0"
12511251
},
12521252
"engines": {
1253-
"node": ">=10"
1253+
"node": "^12.13.0 || ^14.15.0 || >=16"
12541254
}
12551255
},
12561256
"node_modules/arg": {
@@ -5670,12 +5670,12 @@
56705670
"inBundle": true
56715671
},
56725672
"node_modules/npmlog": {
5673-
"version": "6.0.0",
5674-
"resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.0.tgz",
5675-
"integrity": "sha512-03ppFRGlsyUaQFbGC2C8QWJN/C/K7PsfyD9aQdhVKAQIH4sQBc8WASqFBP7O+Ut4d2oo5LoeoboB3cGdBZSp6Q==",
5673+
"version": "6.0.1",
5674+
"resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.1.tgz",
5675+
"integrity": "sha512-BTHDvY6nrRHuRfyjt1MAufLxYdVXZfd099H4+i1f0lPywNQyI4foeNXJRObB/uy+TYqUW0vAD9gbdSOXPst7Eg==",
56765676
"inBundle": true,
56775677
"dependencies": {
5678-
"are-we-there-yet": "^2.0.0",
5678+
"are-we-there-yet": "^3.0.0",
56795679
"console-control-strings": "^1.1.0",
56805680
"gauge": "^4.0.0",
56815681
"set-blocking": "^2.0.0"
@@ -11814,9 +11814,9 @@
1181411814
"integrity": "sha1-+cjBN1fMHde8N5rHeyxipcKGjEA="
1181511815
},
1181611816
"are-we-there-yet": {
11817-
"version": "2.0.0",
11818-
"resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz",
11819-
"integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==",
11817+
"version": "3.0.0",
11818+
"resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.0.tgz",
11819+
"integrity": "sha512-0GWpv50YSOcLXaN6/FAKY3vfRbllXWV2xvfA/oKJF8pzFhWXPV+yjhJXDBbjscDYowv7Yw1A3uigpzn5iEGTyw==",
1182011820
"requires": {
1182111821
"delegates": "^1.0.0",
1182211822
"readable-stream": "^3.6.0"
@@ -15295,11 +15295,11 @@
1529515295
"integrity": "sha512-uQwcd/tY+h1jnEaze6cdX/LrhWhoBxfSknxentoqmIuStxUExxjWd3ULMLFPiFUrZKbOVMowH6Jq2FRWfmhcEw=="
1529615296
},
1529715297
"npmlog": {
15298-
"version": "6.0.0",
15299-
"resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.0.tgz",
15300-
"integrity": "sha512-03ppFRGlsyUaQFbGC2C8QWJN/C/K7PsfyD9aQdhVKAQIH4sQBc8WASqFBP7O+Ut4d2oo5LoeoboB3cGdBZSp6Q==",
15298+
"version": "6.0.1",
15299+
"resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.1.tgz",
15300+
"integrity": "sha512-BTHDvY6nrRHuRfyjt1MAufLxYdVXZfd099H4+i1f0lPywNQyI4foeNXJRObB/uy+TYqUW0vAD9gbdSOXPst7Eg==",
1530115301
"requires": {
15302-
"are-we-there-yet": "^2.0.0",
15302+
"are-we-there-yet": "^3.0.0",
1530315303
"console-control-strings": "^1.1.0",
1530415304
"gauge": "^4.0.0",
1530515305
"set-blocking": "^2.0.0"

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
"npm-profile": "^6.0.0",
106106
"npm-registry-fetch": "^12.0.2",
107107
"npm-user-validate": "^1.0.1",
108-
"npmlog": "^6.0.0",
108+
"npmlog": "^6.0.1",
109109
"opener": "^1.5.2",
110110
"pacote": "^12.0.3",
111111
"parse-conflict-json": "^2.0.1",

0 commit comments

Comments
 (0)