@oclif/plugin-update 4.4.13-dev.0 → 4.4.13-dev.1
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/README.md +1 -1
- package/dist/update.js +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -55,7 +55,7 @@ EXAMPLES
|
|
|
55
55
|
$ oclif-example update --available
|
|
56
56
|
```
|
|
57
57
|
|
|
58
|
-
_See code: [src/commands/update.ts](https://github.com/oclif/plugin-update/blob/v4.4.13-dev.
|
|
58
|
+
_See code: [src/commands/update.ts](https://github.com/oclif/plugin-update/blob/v4.4.13-dev.1/src/commands/update.ts)_
|
|
59
59
|
<!-- commandsstop -->
|
|
60
60
|
|
|
61
61
|
# Contributing
|
package/dist/update.js
CHANGED
|
@@ -357,7 +357,7 @@ const determineChannel = async ({ config, version }) => {
|
|
|
357
357
|
return channel;
|
|
358
358
|
}
|
|
359
359
|
try {
|
|
360
|
-
const { body } = await httpGet(`${config.npmRegistry ?? 'https://registry.npmjs.org'}/${config.pjson.name}
|
|
360
|
+
const { body } = await httpGet(`${config.npmRegistry ?? 'https://registry.npmjs.org'}/${config.pjson.name}`);
|
|
361
361
|
const tags = body['dist-tags'];
|
|
362
362
|
const tag = Object.keys(tags).find((v) => tags[v] === version) ?? channel;
|
|
363
363
|
// convert from npm style tag defaults to OCLIF style
|
package/oclif.manifest.json
CHANGED