update-versions 7.0.9 → 7.0.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cli.js +0 -2
- package/package.json +13 -10
package/cli.js
CHANGED
|
@@ -109,7 +109,6 @@ if (cli.flags) {
|
|
|
109
109
|
// try to read the local config if it's present
|
|
110
110
|
try {
|
|
111
111
|
newConfig = JSON.parse(readFileSync(confLocation, "utf8"));
|
|
112
|
-
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
113
112
|
} catch (e) {
|
|
114
113
|
console.log(
|
|
115
114
|
`\n${messagePrefix}${`\u001b[${90}m${"No config found, moving on."}\u001b[${39}m`}\n`,
|
|
@@ -223,7 +222,6 @@ if (cli.flags) {
|
|
|
223
222
|
}
|
|
224
223
|
}
|
|
225
224
|
});
|
|
226
|
-
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
227
225
|
} catch (e) {
|
|
228
226
|
// no response from npm
|
|
229
227
|
compiledDepNameVersionPairs[singleDepName] = null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "update-versions",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.19",
|
|
4
4
|
"description": "Like npm-check-updates but supports Lerna monorepos and enforces strict semver values",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"app",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"dts": "exit 0",
|
|
49
49
|
"examples": "exit 0",
|
|
50
50
|
"lect": "node '../../ops/lect/lect.js'",
|
|
51
|
-
"letspublish": "npm publish || :",
|
|
51
|
+
"letspublish": "npm publish --provenance || :",
|
|
52
52
|
"lint": "eslint . --fix",
|
|
53
53
|
"perf": "exit 0",
|
|
54
54
|
"prep": "echo 'ready'",
|
|
@@ -76,22 +76,25 @@
|
|
|
76
76
|
},
|
|
77
77
|
"dependencies": {
|
|
78
78
|
"ansi-diff-stream": "^1.2.1",
|
|
79
|
-
"codsen-utils": "^1.6.
|
|
80
|
-
"edit-package-json": "^0.8.
|
|
81
|
-
"globby": "^
|
|
82
|
-
"is-online": "^
|
|
83
|
-
"log-update": "^
|
|
84
|
-
"meow": "^
|
|
79
|
+
"codsen-utils": "^1.6.17",
|
|
80
|
+
"edit-package-json": "^0.8.36",
|
|
81
|
+
"globby": "^15.0.0",
|
|
82
|
+
"is-online": "^12.0.1",
|
|
83
|
+
"log-update": "^7.0.1",
|
|
84
|
+
"meow": "^14.0.0",
|
|
85
85
|
"object-path": "^0.11.8",
|
|
86
86
|
"p-map": "^7.0.3",
|
|
87
87
|
"p-progress": "^1.0.0",
|
|
88
88
|
"p-reduce": "^3.0.0",
|
|
89
|
-
"pacote": "^21.0.
|
|
89
|
+
"pacote": "^21.0.3",
|
|
90
90
|
"update-notifier": "^7.3.1",
|
|
91
91
|
"write-file-atomic": "^6.0.0"
|
|
92
92
|
},
|
|
93
93
|
"devDependencies": {
|
|
94
|
-
"fs-extra": "^11.3.
|
|
94
|
+
"fs-extra": "^11.3.2",
|
|
95
95
|
"rfdc": "^1.4.1"
|
|
96
|
+
},
|
|
97
|
+
"publishConfig": {
|
|
98
|
+
"registry": "https://registry.npmjs.org/"
|
|
96
99
|
}
|
|
97
100
|
}
|