@oclif/plugin-update 4.6.26 → 4.6.28
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 +2 -2
- package/oclif.manifest.json +1 -1
- package/package.json +7 -7
package/README.md
CHANGED
@@ -56,7 +56,7 @@ EXAMPLES
|
|
56
56
|
$ oclif-example update --available
|
57
57
|
```
|
58
58
|
|
59
|
-
_See code: [src/commands/update.ts](https://github.com/oclif/plugin-update/blob/v4.6.
|
59
|
+
_See code: [src/commands/update.ts](https://github.com/oclif/plugin-update/blob/v4.6.28/src/commands/update.ts)_
|
60
60
|
<!-- commandsstop -->
|
61
61
|
|
62
62
|
# Contributing
|
package/dist/update.js
CHANGED
@@ -2,9 +2,9 @@ import { Config, ux } from '@oclif/core';
|
|
2
2
|
import { green, yellow } from 'ansis';
|
3
3
|
import makeDebug from 'debug';
|
4
4
|
import fileSize from 'filesize';
|
5
|
-
import {
|
5
|
+
import { got, HTTPError } from 'got';
|
6
6
|
import { existsSync } from 'node:fs';
|
7
|
-
import { mkdir,
|
7
|
+
import { mkdir, readdir, readFile, rm, stat, symlink, utimes, writeFile } from 'node:fs/promises';
|
8
8
|
import { basename, dirname, join } from 'node:path';
|
9
9
|
import { ProxyAgent } from 'proxy-agent';
|
10
10
|
import { Extractor } from './tar.js';
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
{
|
2
2
|
"name": "@oclif/plugin-update",
|
3
|
-
"version": "4.6.
|
3
|
+
"version": "4.6.28",
|
4
4
|
"author": "Salesforce",
|
5
5
|
"bugs": "https://github.com/oclif/plugin-update/issues",
|
6
6
|
"dependencies": {
|
7
7
|
"@inquirer/select": "^2.5.0",
|
8
8
|
"@oclif/core": "^4",
|
9
|
-
"@oclif/table": "^0.4.
|
9
|
+
"@oclif/table": "^0.4.5",
|
10
10
|
"ansis": "^3.9.0",
|
11
11
|
"debug": "^4.4.0",
|
12
12
|
"filesize": "^6.1.0",
|
@@ -17,6 +17,7 @@
|
|
17
17
|
},
|
18
18
|
"devDependencies": {
|
19
19
|
"@commitlint/config-conventional": "^19",
|
20
|
+
"@eslint/compat": "^1.2.5",
|
20
21
|
"@oclif/plugin-help": "^6",
|
21
22
|
"@oclif/prettier-config": "^0.2.1",
|
22
23
|
"@types/chai": "^4.3.17",
|
@@ -29,10 +30,9 @@
|
|
29
30
|
"@types/tar-fs": "^2.0.2",
|
30
31
|
"chai": "^4.5.0",
|
31
32
|
"commitlint": "^19",
|
32
|
-
"eslint": "^
|
33
|
-
"eslint-config-oclif": "^
|
34
|
-
"eslint-config-
|
35
|
-
"eslint-config-prettier": "^9.1.0",
|
33
|
+
"eslint": "^9.19.0",
|
34
|
+
"eslint-config-oclif": "^6.0.0",
|
35
|
+
"eslint-config-prettier": "^10.0.1",
|
36
36
|
"husky": "^9.1.7",
|
37
37
|
"lint-staged": "^15",
|
38
38
|
"mocha": "^10.8.2",
|
@@ -74,7 +74,7 @@
|
|
74
74
|
"build": "shx rm -rf lib && tsc",
|
75
75
|
"clean": "shx rm -f oclif.manifest.json",
|
76
76
|
"compile": "tsc",
|
77
|
-
"lint": "eslint
|
77
|
+
"lint": "eslint",
|
78
78
|
"postpack": "yarn run clean",
|
79
79
|
"posttest": "yarn lint",
|
80
80
|
"prepack": "yarn build && oclif manifest && oclif readme",
|