Skip to content

Commit 726a8a0

Browse files
wraithgarlukekarrys
authored andcommitted
1 parent 9593c78 commit 726a8a0

File tree

3 files changed

+21
-20
lines changed

3 files changed

+21
-20
lines changed

node_modules/gauge/lib/index.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,7 @@ Gauge.prototype._computeTheme = function (theme) {
9191
if (typeof theme === 'string') {
9292
theme = this._themes.getTheme(theme)
9393
} else if (
94-
theme &&
95-
(Object.keys(theme).length === 0 || theme.hasUnicode != null || theme.hasColor != null)
94+
Object.keys(theme).length === 0 || theme.hasUnicode != null || theme.hasColor != null
9695
) {
9796
var useUnicode = theme.hasUnicode == null ? hasUnicode() : theme.hasUnicode
9897
var useColor = theme.hasColor == null ? hasColor : theme.hasColor

node_modules/gauge/package.json

+13-11
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
{
22
"name": "gauge",
3-
"version": "4.0.3",
3+
"version": "4.0.4",
44
"description": "A terminal based horizontal gauge",
55
"main": "lib",
66
"scripts": {
77
"test": "tap",
8-
"lint": "eslint '**/*.js'",
9-
"postlint": "npm-template-check",
8+
"lint": "eslint \"**/*.js\"",
9+
"postlint": "template-oss-check",
1010
"lintfix": "npm run lint -- --fix",
1111
"preversion": "npm test",
1212
"postversion": "npm publish",
1313
"prepublishOnly": "git push origin --follow-tags",
1414
"snap": "tap",
1515
"posttest": "npm run lint",
16-
"template-copy": "npm-template-copy --force"
16+
"template-oss-apply": "template-oss-apply --force"
1717
},
1818
"repository": {
1919
"type": "git",
20-
"url": "https://github.com/npm/gauge"
20+
"url": "https://github.com/npm/gauge.git"
2121
},
2222
"keywords": [
2323
"progressbar",
@@ -41,16 +41,17 @@
4141
"wide-align": "^1.1.5"
4242
},
4343
"devDependencies": {
44-
"@npmcli/template-oss": "^2.9.2",
44+
"@npmcli/eslint-config": "^3.0.1",
45+
"@npmcli/template-oss": "3.2.0",
4546
"readable-stream": "^3.6.0",
46-
"tap": "^15.1.6"
47+
"tap": "^16.0.1"
4748
},
4849
"files": [
49-
"bin",
50-
"lib"
50+
"bin/",
51+
"lib/"
5152
],
5253
"engines": {
53-
"node": "^12.13.0 || ^14.15.0 || >=16"
54+
"node": "^12.13.0 || ^14.15.0 || >=16.0.0"
5455
},
5556
"tap": {
5657
"branches": 79,
@@ -59,6 +60,7 @@
5960
"lines": 90
6061
},
6162
"templateOSS": {
62-
"version": "2.9.2"
63+
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
64+
"version": "3.2.0"
6365
}
6466
}

package-lock.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -3280,9 +3280,9 @@
32803280
"dev": true
32813281
},
32823282
"node_modules/gauge": {
3283-
"version": "4.0.3",
3284-
"resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.3.tgz",
3285-
"integrity": "sha512-ICw1DhAwMtb22rYFwEHgJcx1JCwJGv3x6G0OQUq56Nge+H4Q8JEwr8iveS0XFlsUNSI67F5ffMGK25bK4Pmskw==",
3283+
"version": "4.0.4",
3284+
"resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz",
3285+
"integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==",
32863286
"inBundle": true,
32873287
"dependencies": {
32883288
"aproba": "^1.0.3 || ^2.0.0",
@@ -3295,7 +3295,7 @@
32953295
"wide-align": "^1.1.5"
32963296
},
32973297
"engines": {
3298-
"node": "^12.13.0 || ^14.15.0 || >=16"
3298+
"node": "^12.13.0 || ^14.15.0 || >=16.0.0"
32993299
}
33003300
},
33013301
"node_modules/gensync": {
@@ -12781,9 +12781,9 @@
1278112781
"dev": true
1278212782
},
1278312783
"gauge": {
12784-
"version": "4.0.3",
12785-
"resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.3.tgz",
12786-
"integrity": "sha512-ICw1DhAwMtb22rYFwEHgJcx1JCwJGv3x6G0OQUq56Nge+H4Q8JEwr8iveS0XFlsUNSI67F5ffMGK25bK4Pmskw==",
12784+
"version": "4.0.4",
12785+
"resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz",
12786+
"integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==",
1278712787
"requires": {
1278812788
"aproba": "^1.0.3 || ^2.0.0",
1278912789
"color-support": "^1.1.3",

0 commit comments

Comments
 (0)