@salesforce/plugin-command-reference 3.0.72 → 3.0.74
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 +68 -3
- package/npm-shrinkwrap.json +28 -27
- package/oclif.lock +29 -28
- package/oclif.manifest.json +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -81,9 +81,74 @@ Now diff the output. Changes should be intentional!
|
|
|
81
81
|
|
|
82
82
|
<!-- commands -->
|
|
83
83
|
|
|
84
|
-
|
|
84
|
+
- [`sf commandreference generate`](#sf-commandreference-generate)
|
|
85
|
+
- [`sf jit install`](#sf-jit-install)
|
|
85
86
|
|
|
86
|
-
|
|
87
|
-
|
|
87
|
+
## `sf commandreference generate`
|
|
88
|
+
|
|
89
|
+
generate the command reference guide located
|
|
90
|
+
|
|
91
|
+
```
|
|
92
|
+
USAGE
|
|
93
|
+
$ sf commandreference generate [--json] [-d <value>] [-p <value> | -a] [-s <value>] [--hidden] [--error-on-warnings] [-c
|
|
94
|
+
<value>]
|
|
95
|
+
|
|
96
|
+
FLAGS
|
|
97
|
+
-a, --all include all relevant plugins in the generation
|
|
98
|
+
-c, --config-path=<value> A path to the directory containing a plugin or cli
|
|
99
|
+
-d, --output-dir=<value> [default: ./tmp/root] output directory to put generated files
|
|
100
|
+
-p, --plugins=<value>... comma separated list of plugin names to be part of the generation. Defaults to the oclif
|
|
101
|
+
plugin in the current working directory
|
|
102
|
+
-s, --ditamap-suffix=<value> [default: unified] unique suffix to append to generated ditamap
|
|
103
|
+
--error-on-warnings fail the command if there are any warnings
|
|
104
|
+
--hidden show hidden commands
|
|
105
|
+
|
|
106
|
+
GLOBAL FLAGS
|
|
107
|
+
--json Format output as json.
|
|
108
|
+
|
|
109
|
+
DESCRIPTION
|
|
110
|
+
generate the command reference guide located
|
|
111
|
+
|
|
112
|
+
generate the command reference guide located
|
|
113
|
+
|
|
114
|
+
EXAMPLES
|
|
115
|
+
Generate the command reference guide
|
|
116
|
+
|
|
117
|
+
$ sf commandreference generate
|
|
118
|
+
|
|
119
|
+
Generate the command reference for a set of plugins
|
|
120
|
+
|
|
121
|
+
$ sf commandreference generate --plugins pluginA,pluginB
|
|
122
|
+
|
|
123
|
+
Generate the command reference for all plugins
|
|
124
|
+
|
|
125
|
+
$ sf commandreference generate --all --output-dir ./docs
|
|
126
|
+
|
|
127
|
+
Generate the command reference for all plugins in a directory
|
|
128
|
+
|
|
129
|
+
$ sf commandreference generate --all --config-path /path/to/plugin --output-dir ./docs
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
_See code: [src/commands/commandreference/generate.ts](https://github.com/salesforcecli/plugin-command-reference/blob/3.0.74/src/commands/commandreference/generate.ts)_
|
|
133
|
+
|
|
134
|
+
## `sf jit install`
|
|
135
|
+
|
|
136
|
+
Install all JIT plugins.
|
|
137
|
+
|
|
138
|
+
```
|
|
139
|
+
USAGE
|
|
140
|
+
$ sf jit install [--json] [-d]
|
|
141
|
+
|
|
142
|
+
FLAGS
|
|
143
|
+
-d, --dry-run List the plugins that would be installed.
|
|
144
|
+
|
|
145
|
+
GLOBAL FLAGS
|
|
146
|
+
--json Format output as json.
|
|
147
|
+
|
|
148
|
+
EXAMPLES
|
|
149
|
+
$ sf jit install
|
|
150
|
+
```
|
|
151
|
+
|
|
152
|
+
_See code: [src/commands/jit/install.ts](https://github.com/salesforcecli/plugin-command-reference/blob/3.0.74/src/commands/jit/install.ts)_
|
|
88
153
|
|
|
89
154
|
<!-- commandsstop -->
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-command-reference",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.74",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/plugin-command-reference",
|
|
9
|
-
"version": "3.0.
|
|
9
|
+
"version": "3.0.74",
|
|
10
10
|
"license": "BSD-3-Clause",
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@oclif/core": "^3.
|
|
12
|
+
"@oclif/core": "^3.26.0",
|
|
13
13
|
"@salesforce/core": "^6.7.3",
|
|
14
|
-
"@salesforce/kit": "^3.0
|
|
14
|
+
"@salesforce/kit": "^3.1.0",
|
|
15
15
|
"@salesforce/sf-plugins-core": "^5.0.13",
|
|
16
16
|
"@salesforce/ts-types": "^2.0.9",
|
|
17
17
|
"chalk": "^4",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"@salesforce/plugin-auth": "^2.8.26",
|
|
25
25
|
"@types/debug": "^4.1.12",
|
|
26
26
|
"@types/ejs": "^3.1.5",
|
|
27
|
-
"eslint-plugin-sf-plugin": "^1.17.
|
|
27
|
+
"eslint-plugin-sf-plugin": "^1.17.5",
|
|
28
28
|
"oclif": "^4",
|
|
29
29
|
"ts-node": "^10.9.2",
|
|
30
30
|
"typescript": "^5.4.3"
|
|
@@ -2827,9 +2827,9 @@
|
|
|
2827
2827
|
}
|
|
2828
2828
|
},
|
|
2829
2829
|
"node_modules/@oclif/core": {
|
|
2830
|
-
"version": "3.
|
|
2831
|
-
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.
|
|
2832
|
-
"integrity": "sha512-
|
|
2830
|
+
"version": "3.26.0",
|
|
2831
|
+
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.26.0.tgz",
|
|
2832
|
+
"integrity": "sha512-TpMdfD4tfA2tVVbd4l0PrP02o5KoUXYmudBbTC7CeguDo/GLoprw4uL8cMsaVA26+cbcy7WYtOEydQiHVtJixA==",
|
|
2833
2833
|
"license": "MIT",
|
|
2834
2834
|
"dependencies": {
|
|
2835
2835
|
"@types/cli-progress": "^3.11.5",
|
|
@@ -2976,13 +2976,13 @@
|
|
|
2976
2976
|
}
|
|
2977
2977
|
},
|
|
2978
2978
|
"node_modules/@oclif/plugin-warn-if-update-available": {
|
|
2979
|
-
"version": "3.0.
|
|
2980
|
-
"resolved": "https://registry.npmjs.org/@oclif/plugin-warn-if-update-available/-/plugin-warn-if-update-available-3.0.
|
|
2981
|
-
"integrity": "sha512-
|
|
2979
|
+
"version": "3.0.15",
|
|
2980
|
+
"resolved": "https://registry.npmjs.org/@oclif/plugin-warn-if-update-available/-/plugin-warn-if-update-available-3.0.15.tgz",
|
|
2981
|
+
"integrity": "sha512-JtPTJFjL6izMCe5dDS2ix2PyWAD2DeJ5Atzd2HHRifbPcmOxaUE62FKTnarIwfPHLMF/nN33liwo9InAdirozg==",
|
|
2982
2982
|
"dev": true,
|
|
2983
2983
|
"license": "MIT",
|
|
2984
2984
|
"dependencies": {
|
|
2985
|
-
"@oclif/core": "^3.
|
|
2985
|
+
"@oclif/core": "^3.26.0",
|
|
2986
2986
|
"chalk": "^5.3.0",
|
|
2987
2987
|
"debug": "^4.1.0",
|
|
2988
2988
|
"http-call": "^5.2.2",
|
|
@@ -3176,9 +3176,9 @@
|
|
|
3176
3176
|
}
|
|
3177
3177
|
},
|
|
3178
3178
|
"node_modules/@salesforce/kit": {
|
|
3179
|
-
"version": "3.0
|
|
3180
|
-
"resolved": "https://registry.npmjs.org/@salesforce/kit/-/kit-3.0.
|
|
3181
|
-
"integrity": "sha512-
|
|
3179
|
+
"version": "3.1.0",
|
|
3180
|
+
"resolved": "https://registry.npmjs.org/@salesforce/kit/-/kit-3.1.0.tgz",
|
|
3181
|
+
"integrity": "sha512-X2d9O/U2wdQBXIrtVqQdMwo872Cv+qkYFzF0W+AQKG/LEe9cngnOzUVDYNkGD9tq3jcl+oenHXYuVDpkMhxTwA==",
|
|
3182
3182
|
"license": "BSD-3-Clause",
|
|
3183
3183
|
"dependencies": {
|
|
3184
3184
|
"@salesforce/ts-types": "^2.0.9",
|
|
@@ -6699,13 +6699,13 @@
|
|
|
6699
6699
|
}
|
|
6700
6700
|
},
|
|
6701
6701
|
"node_modules/eslint-plugin-sf-plugin": {
|
|
6702
|
-
"version": "1.17.
|
|
6703
|
-
"resolved": "https://registry.npmjs.org/eslint-plugin-sf-plugin/-/eslint-plugin-sf-plugin-1.17.
|
|
6704
|
-
"integrity": "sha512-
|
|
6702
|
+
"version": "1.17.5",
|
|
6703
|
+
"resolved": "https://registry.npmjs.org/eslint-plugin-sf-plugin/-/eslint-plugin-sf-plugin-1.17.5.tgz",
|
|
6704
|
+
"integrity": "sha512-TQlUNOwop8aGeIOY+Vtj3OV0EGN7ps2YpV9LEvgGpw7Eeg5ocULQqR6WPwuRpeRn+XUNl7AC5NVDdhveA1fEEQ==",
|
|
6705
6705
|
"dev": true,
|
|
6706
6706
|
"license": "BSD-3-Clause",
|
|
6707
6707
|
"dependencies": {
|
|
6708
|
-
"@salesforce/core": "^6.7.
|
|
6708
|
+
"@salesforce/core": "^6.7.3",
|
|
6709
6709
|
"@typescript-eslint/utils": "^6.17.0"
|
|
6710
6710
|
},
|
|
6711
6711
|
"engines": {
|
|
@@ -10548,9 +10548,9 @@
|
|
|
10548
10548
|
}
|
|
10549
10549
|
},
|
|
10550
10550
|
"node_modules/oclif": {
|
|
10551
|
-
"version": "4.
|
|
10552
|
-
"resolved": "https://registry.npmjs.org/oclif/-/oclif-4.
|
|
10553
|
-
"integrity": "sha512-
|
|
10551
|
+
"version": "4.7.2",
|
|
10552
|
+
"resolved": "https://registry.npmjs.org/oclif/-/oclif-4.7.2.tgz",
|
|
10553
|
+
"integrity": "sha512-OVBVw3icaC5dJtDcojn61HAtilqqVu9Uae+Cd/EVNVeAOMe2G51MpMg5RDj8B3KKvuq8EudzJkK78OWdhoTZVQ==",
|
|
10554
10554
|
"dev": true,
|
|
10555
10555
|
"license": "MIT",
|
|
10556
10556
|
"dependencies": {
|
|
@@ -10562,7 +10562,7 @@
|
|
|
10562
10562
|
"@oclif/core": "^3.21.0",
|
|
10563
10563
|
"@oclif/plugin-help": "^6.0.18",
|
|
10564
10564
|
"@oclif/plugin-not-found": "^3.0.14",
|
|
10565
|
-
"@oclif/plugin-warn-if-update-available": "^3.0.
|
|
10565
|
+
"@oclif/plugin-warn-if-update-available": "^3.0.14",
|
|
10566
10566
|
"async-retry": "^1.3.3",
|
|
10567
10567
|
"chalk": "^4",
|
|
10568
10568
|
"change-case": "^4",
|
|
@@ -10575,7 +10575,7 @@
|
|
|
10575
10575
|
"lodash.template": "^4.5.0",
|
|
10576
10576
|
"normalize-package-data": "^3.0.3",
|
|
10577
10577
|
"semver": "^7.6.0",
|
|
10578
|
-
"sort-package-json": "^2.
|
|
10578
|
+
"sort-package-json": "^2.10.0",
|
|
10579
10579
|
"validate-npm-package-name": "^5.0.0"
|
|
10580
10580
|
},
|
|
10581
10581
|
"bin": {
|
|
@@ -12139,9 +12139,9 @@
|
|
|
12139
12139
|
"license": "MIT"
|
|
12140
12140
|
},
|
|
12141
12141
|
"node_modules/sort-package-json": {
|
|
12142
|
-
"version": "2.
|
|
12143
|
-
"resolved": "https://registry.npmjs.org/sort-package-json/-/sort-package-json-2.
|
|
12144
|
-
"integrity": "sha512-
|
|
12142
|
+
"version": "2.10.0",
|
|
12143
|
+
"resolved": "https://registry.npmjs.org/sort-package-json/-/sort-package-json-2.10.0.tgz",
|
|
12144
|
+
"integrity": "sha512-MYecfvObMwJjjJskhxYfuOADkXp1ZMMnCFC8yhp+9HDsk7HhR336hd7eiBs96lTXfiqmUNI+WQCeCMRBhl251g==",
|
|
12145
12145
|
"dev": true,
|
|
12146
12146
|
"license": "MIT",
|
|
12147
12147
|
"dependencies": {
|
|
@@ -12151,6 +12151,7 @@
|
|
|
12151
12151
|
"git-hooks-list": "^3.0.0",
|
|
12152
12152
|
"globby": "^13.1.2",
|
|
12153
12153
|
"is-plain-obj": "^4.1.0",
|
|
12154
|
+
"semver": "^7.6.0",
|
|
12154
12155
|
"sort-object-keys": "^1.1.3"
|
|
12155
12156
|
},
|
|
12156
12157
|
"bin": {
|
package/oclif.lock
CHANGED
|
@@ -1294,10 +1294,10 @@
|
|
|
1294
1294
|
wordwrap "^1.0.0"
|
|
1295
1295
|
wrap-ansi "^7.0.0"
|
|
1296
1296
|
|
|
1297
|
-
"@oclif/core@^3.15.1", "@oclif/core@^3.
|
|
1298
|
-
version "3.
|
|
1299
|
-
resolved "https://registry.yarnpkg.com/@oclif/core/-/core-3.
|
|
1300
|
-
integrity sha512-
|
|
1297
|
+
"@oclif/core@^3.15.1", "@oclif/core@^3.21.0", "@oclif/core@^3.23.0", "@oclif/core@^3.26.0":
|
|
1298
|
+
version "3.26.0"
|
|
1299
|
+
resolved "https://registry.yarnpkg.com/@oclif/core/-/core-3.26.0.tgz#959d5e9f13f4ad6a4e98235ad125189df9ee4279"
|
|
1300
|
+
integrity sha512-TpMdfD4tfA2tVVbd4l0PrP02o5KoUXYmudBbTC7CeguDo/GLoprw4uL8cMsaVA26+cbcy7WYtOEydQiHVtJixA==
|
|
1301
1301
|
dependencies:
|
|
1302
1302
|
"@types/cli-progress" "^3.11.5"
|
|
1303
1303
|
ansi-escapes "^4.3.2"
|
|
@@ -1344,12 +1344,12 @@
|
|
|
1344
1344
|
chalk "^5.3.0"
|
|
1345
1345
|
fast-levenshtein "^3.0.0"
|
|
1346
1346
|
|
|
1347
|
-
"@oclif/plugin-warn-if-update-available@^3.0.
|
|
1348
|
-
version "3.0.
|
|
1349
|
-
resolved "https://registry.yarnpkg.com/@oclif/plugin-warn-if-update-available/-/plugin-warn-if-update-available-3.0.
|
|
1350
|
-
integrity sha512-
|
|
1347
|
+
"@oclif/plugin-warn-if-update-available@^3.0.14":
|
|
1348
|
+
version "3.0.15"
|
|
1349
|
+
resolved "https://registry.yarnpkg.com/@oclif/plugin-warn-if-update-available/-/plugin-warn-if-update-available-3.0.15.tgz#533e5914c9efc46a1539b5a5e931dbf3c32ffb52"
|
|
1350
|
+
integrity sha512-JtPTJFjL6izMCe5dDS2ix2PyWAD2DeJ5Atzd2HHRifbPcmOxaUE62FKTnarIwfPHLMF/nN33liwo9InAdirozg==
|
|
1351
1351
|
dependencies:
|
|
1352
|
-
"@oclif/core" "^3.
|
|
1352
|
+
"@oclif/core" "^3.26.0"
|
|
1353
1353
|
chalk "^5.3.0"
|
|
1354
1354
|
debug "^4.1.0"
|
|
1355
1355
|
http-call "^5.2.2"
|
|
@@ -1384,7 +1384,7 @@
|
|
|
1384
1384
|
semver "^7.5.4"
|
|
1385
1385
|
ts-retry-promise "^0.7.1"
|
|
1386
1386
|
|
|
1387
|
-
"@salesforce/core@^6.4.1", "@salesforce/core@^6.7.
|
|
1387
|
+
"@salesforce/core@^6.4.1", "@salesforce/core@^6.7.3":
|
|
1388
1388
|
version "6.7.3"
|
|
1389
1389
|
resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-6.7.3.tgz#5d8f30c40ac3cebb898c8e845fe9a067bc729268"
|
|
1390
1390
|
integrity sha512-uU+PuZZGXxByhvnXLH1V3eY5P1caw401dIZ/QvhzYxoP/alPLk7dpChnZNJYH5Rw3dc/AhSPw+eg0cvUyjhP1Q==
|
|
@@ -1445,10 +1445,10 @@
|
|
|
1445
1445
|
typescript "^4.9.5"
|
|
1446
1446
|
wireit "^0.14.1"
|
|
1447
1447
|
|
|
1448
|
-
"@salesforce/kit@^3.0.13", "@salesforce/kit@^3.0.15":
|
|
1449
|
-
version "3.0
|
|
1450
|
-
resolved "https://registry.yarnpkg.com/@salesforce/kit/-/kit-3.0.
|
|
1451
|
-
integrity sha512-
|
|
1448
|
+
"@salesforce/kit@^3.0.13", "@salesforce/kit@^3.0.15", "@salesforce/kit@^3.1.0":
|
|
1449
|
+
version "3.1.0"
|
|
1450
|
+
resolved "https://registry.yarnpkg.com/@salesforce/kit/-/kit-3.1.0.tgz#aa42533084c676e865f0f9c1907a16fb6f74dee7"
|
|
1451
|
+
integrity sha512-X2d9O/U2wdQBXIrtVqQdMwo872Cv+qkYFzF0W+AQKG/LEe9cngnOzUVDYNkGD9tq3jcl+oenHXYuVDpkMhxTwA==
|
|
1452
1452
|
dependencies:
|
|
1453
1453
|
"@salesforce/ts-types" "^2.0.9"
|
|
1454
1454
|
tslib "^2.6.2"
|
|
@@ -3606,12 +3606,12 @@ eslint-plugin-jsdoc@^46.9.0:
|
|
|
3606
3606
|
semver "^7.5.4"
|
|
3607
3607
|
spdx-expression-parse "^3.0.1"
|
|
3608
3608
|
|
|
3609
|
-
eslint-plugin-sf-plugin@^1.17.
|
|
3610
|
-
version "1.17.
|
|
3611
|
-
resolved "https://registry.yarnpkg.com/eslint-plugin-sf-plugin/-/eslint-plugin-sf-plugin-1.17.
|
|
3612
|
-
integrity sha512-
|
|
3609
|
+
eslint-plugin-sf-plugin@^1.17.5:
|
|
3610
|
+
version "1.17.5"
|
|
3611
|
+
resolved "https://registry.yarnpkg.com/eslint-plugin-sf-plugin/-/eslint-plugin-sf-plugin-1.17.5.tgz#3ce0e7033eaf50675c962e7d2def3bb2cad15018"
|
|
3612
|
+
integrity sha512-TQlUNOwop8aGeIOY+Vtj3OV0EGN7ps2YpV9LEvgGpw7Eeg5ocULQqR6WPwuRpeRn+XUNl7AC5NVDdhveA1fEEQ==
|
|
3613
3613
|
dependencies:
|
|
3614
|
-
"@salesforce/core" "^6.7.
|
|
3614
|
+
"@salesforce/core" "^6.7.3"
|
|
3615
3615
|
"@typescript-eslint/utils" "^6.17.0"
|
|
3616
3616
|
|
|
3617
3617
|
eslint-plugin-unicorn@^49.0.0:
|
|
@@ -5691,9 +5691,9 @@ object.values@^1.1.7:
|
|
|
5691
5691
|
es-abstract "^1.22.1"
|
|
5692
5692
|
|
|
5693
5693
|
oclif@^4:
|
|
5694
|
-
version "4.
|
|
5695
|
-
resolved "https://registry.yarnpkg.com/oclif/-/oclif-4.
|
|
5696
|
-
integrity sha512-
|
|
5694
|
+
version "4.7.2"
|
|
5695
|
+
resolved "https://registry.yarnpkg.com/oclif/-/oclif-4.7.2.tgz#3d74b23f319870508bf8dbefc5147bfd2d46fb2d"
|
|
5696
|
+
integrity sha512-OVBVw3icaC5dJtDcojn61HAtilqqVu9Uae+Cd/EVNVeAOMe2G51MpMg5RDj8B3KKvuq8EudzJkK78OWdhoTZVQ==
|
|
5697
5697
|
dependencies:
|
|
5698
5698
|
"@aws-sdk/client-cloudfront" "^3.535.0"
|
|
5699
5699
|
"@aws-sdk/client-s3" "^3.535.0"
|
|
@@ -5703,7 +5703,7 @@ oclif@^4:
|
|
|
5703
5703
|
"@oclif/core" "^3.21.0"
|
|
5704
5704
|
"@oclif/plugin-help" "^6.0.18"
|
|
5705
5705
|
"@oclif/plugin-not-found" "^3.0.14"
|
|
5706
|
-
"@oclif/plugin-warn-if-update-available" "^3.0.
|
|
5706
|
+
"@oclif/plugin-warn-if-update-available" "^3.0.14"
|
|
5707
5707
|
async-retry "^1.3.3"
|
|
5708
5708
|
chalk "^4"
|
|
5709
5709
|
change-case "^4"
|
|
@@ -5716,7 +5716,7 @@ oclif@^4:
|
|
|
5716
5716
|
lodash.template "^4.5.0"
|
|
5717
5717
|
normalize-package-data "^3.0.3"
|
|
5718
5718
|
semver "^7.6.0"
|
|
5719
|
-
sort-package-json "^2.
|
|
5719
|
+
sort-package-json "^2.10.0"
|
|
5720
5720
|
validate-npm-package-name "^5.0.0"
|
|
5721
5721
|
|
|
5722
5722
|
on-exit-leak-free@^2.1.0:
|
|
@@ -6603,10 +6603,10 @@ sort-object-keys@^1.1.3:
|
|
|
6603
6603
|
resolved "https://registry.yarnpkg.com/sort-object-keys/-/sort-object-keys-1.1.3.tgz#bff833fe85cab147b34742e45863453c1e190b45"
|
|
6604
6604
|
integrity sha512-855pvK+VkU7PaKYPc+Jjnmt4EzejQHyhhF33q31qG8x7maDzkeFhAAThdCYay11CISO+qAMwjOBP+fPZe0IPyg==
|
|
6605
6605
|
|
|
6606
|
-
sort-package-json@^2.
|
|
6607
|
-
version "2.
|
|
6608
|
-
resolved "https://registry.yarnpkg.com/sort-package-json/-/sort-package-json-2.
|
|
6609
|
-
integrity sha512-
|
|
6606
|
+
sort-package-json@^2.10.0:
|
|
6607
|
+
version "2.10.0"
|
|
6608
|
+
resolved "https://registry.yarnpkg.com/sort-package-json/-/sort-package-json-2.10.0.tgz#6be07424bf3b7db9fbb1bdd69e7945f301026d8a"
|
|
6609
|
+
integrity sha512-MYecfvObMwJjjJskhxYfuOADkXp1ZMMnCFC8yhp+9HDsk7HhR336hd7eiBs96lTXfiqmUNI+WQCeCMRBhl251g==
|
|
6610
6610
|
dependencies:
|
|
6611
6611
|
detect-indent "^7.0.1"
|
|
6612
6612
|
detect-newline "^4.0.0"
|
|
@@ -6614,6 +6614,7 @@ sort-package-json@^2.8.0:
|
|
|
6614
6614
|
git-hooks-list "^3.0.0"
|
|
6615
6615
|
globby "^13.1.2"
|
|
6616
6616
|
is-plain-obj "^4.1.0"
|
|
6617
|
+
semver "^7.6.0"
|
|
6617
6618
|
sort-object-keys "^1.1.3"
|
|
6618
6619
|
|
|
6619
6620
|
source-map-support@^0.5.21:
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-command-reference",
|
|
3
3
|
"description": "Generate the Salesforce CLI command reference guide",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.74",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/salesforcecli/plugin-command-reference/issues",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@oclif/core": "^3.
|
|
8
|
+
"@oclif/core": "^3.26.0",
|
|
9
9
|
"@salesforce/core": "^6.7.3",
|
|
10
|
-
"@salesforce/kit": "^3.0
|
|
10
|
+
"@salesforce/kit": "^3.1.0",
|
|
11
11
|
"@salesforce/sf-plugins-core": "^5.0.13",
|
|
12
12
|
"@salesforce/ts-types": "^2.0.9",
|
|
13
13
|
"chalk": "^4",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"@salesforce/plugin-auth": "^2.8.26",
|
|
21
21
|
"@types/debug": "^4.1.12",
|
|
22
22
|
"@types/ejs": "^3.1.5",
|
|
23
|
-
"eslint-plugin-sf-plugin": "^1.17.
|
|
23
|
+
"eslint-plugin-sf-plugin": "^1.17.5",
|
|
24
24
|
"oclif": "^4",
|
|
25
25
|
"ts-node": "^10.9.2",
|
|
26
26
|
"typescript": "^5.4.3"
|