@salesforce/plugin-settings 1.4.32 → 1.4.34
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 +39 -24
- package/messages/config.get.md +3 -1
- package/messages/config.list.md +6 -2
- package/messages/config.set.md +8 -8
- package/messages/config.unset.md +3 -1
- package/oclif.manifest.json +10 -11
- package/package.json +13 -13
package/README.md
CHANGED
|
@@ -107,7 +107,7 @@ EXAMPLES
|
|
|
107
107
|
$ sf alias list
|
|
108
108
|
```
|
|
109
109
|
|
|
110
|
-
_See code: [src/commands/alias/list.ts](https://github.com/salesforcecli/plugin-settings/blob/1.4.
|
|
110
|
+
_See code: [src/commands/alias/list.ts](https://github.com/salesforcecli/plugin-settings/blob/1.4.34/src/commands/alias/list.ts)_
|
|
111
111
|
|
|
112
112
|
## `sf alias set`
|
|
113
113
|
|
|
@@ -155,7 +155,7 @@ EXAMPLES
|
|
|
155
155
|
$ sf alias set my-scratch-org test-ss0xut7txzxf@example.com
|
|
156
156
|
```
|
|
157
157
|
|
|
158
|
-
_See code: [src/commands/alias/set.ts](https://github.com/salesforcecli/plugin-settings/blob/1.4.
|
|
158
|
+
_See code: [src/commands/alias/set.ts](https://github.com/salesforcecli/plugin-settings/blob/1.4.34/src/commands/alias/set.ts)_
|
|
159
159
|
|
|
160
160
|
## `sf alias unset`
|
|
161
161
|
|
|
@@ -194,7 +194,7 @@ EXAMPLES
|
|
|
194
194
|
$ sf alias unset --all [--no-prompt]
|
|
195
195
|
```
|
|
196
196
|
|
|
197
|
-
_See code: [src/commands/alias/unset.ts](https://github.com/salesforcecli/plugin-settings/blob/1.4.
|
|
197
|
+
_See code: [src/commands/alias/unset.ts](https://github.com/salesforcecli/plugin-settings/blob/1.4.34/src/commands/alias/unset.ts)_
|
|
198
198
|
|
|
199
199
|
## `sf config get`
|
|
200
200
|
|
|
@@ -213,9 +213,10 @@ GLOBAL FLAGS
|
|
|
213
213
|
DESCRIPTION
|
|
214
214
|
Get the value of a configuration variable.
|
|
215
215
|
|
|
216
|
-
Run "sf config list" to see
|
|
217
|
-
|
|
218
|
-
configuration variable.
|
|
216
|
+
Run "sf config list" to see the configuration variables you've already set and their level (local or global).
|
|
217
|
+
|
|
218
|
+
Run "sf config set" to set a configuration variable. For the full list of available configuration variables, see
|
|
219
|
+
https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_dev_cli_config_values.htm.
|
|
219
220
|
|
|
220
221
|
ALIASES
|
|
221
222
|
$ sf force config get
|
|
@@ -230,7 +231,7 @@ EXAMPLES
|
|
|
230
231
|
$ sf config get target-org api-version --verbose
|
|
231
232
|
```
|
|
232
233
|
|
|
233
|
-
_See code: [src/commands/config/get.ts](https://github.com/salesforcecli/plugin-settings/blob/1.4.
|
|
234
|
+
_See code: [src/commands/config/get.ts](https://github.com/salesforcecli/plugin-settings/blob/1.4.34/src/commands/config/get.ts)_
|
|
234
235
|
|
|
235
236
|
## `sf config list`
|
|
236
237
|
|
|
@@ -246,19 +247,30 @@ GLOBAL FLAGS
|
|
|
246
247
|
DESCRIPTION
|
|
247
248
|
List the configuration variables that you've previously set.
|
|
248
249
|
|
|
249
|
-
|
|
250
|
-
|
|
250
|
+
A config variable can be global or local, depending on whether you used the --global flag when you set it. Local
|
|
251
|
+
config variables apply only to the current project and override global config variables, which apply to all projects.
|
|
252
|
+
You can set all config variables as environment variables. Environment variables override their equivalent local and
|
|
253
|
+
global config variables.
|
|
254
|
+
|
|
255
|
+
The output of this command takes into account your current context. For example, let's say you run this command from a
|
|
256
|
+
Salesforce DX project in which you've locally set the "target-org" config variable. The command displays the local
|
|
257
|
+
value, even if you've also set "target-org" globally. If you haven't set the config variable locally, then the global
|
|
258
|
+
value is displayed, if set. If you set the SF_TARGET_ORG environment variable, it's displayed as such and overrides
|
|
259
|
+
any locally or globally set "target-org" config variable.
|
|
260
|
+
|
|
261
|
+
For the full list of available configuration variables, see
|
|
262
|
+
https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_dev_cli_config_values.htm.
|
|
251
263
|
|
|
252
264
|
ALIASES
|
|
253
265
|
$ sf force config list
|
|
254
266
|
|
|
255
267
|
EXAMPLES
|
|
256
|
-
List
|
|
268
|
+
List the global and local configuration variables that apply to your current context:
|
|
257
269
|
|
|
258
270
|
$ sf config list
|
|
259
271
|
```
|
|
260
272
|
|
|
261
|
-
_See code: [src/commands/config/list.ts](https://github.com/salesforcecli/plugin-settings/blob/1.4.
|
|
273
|
+
_See code: [src/commands/config/list.ts](https://github.com/salesforcecli/plugin-settings/blob/1.4.34/src/commands/config/list.ts)_
|
|
262
274
|
|
|
263
275
|
## `sf config set`
|
|
264
276
|
|
|
@@ -292,29 +304,30 @@ DESCRIPTION
|
|
|
292
304
|
|
|
293
305
|
Run "sf config list" to see the configuration variables you've already set and their level (local or global).
|
|
294
306
|
|
|
307
|
+
If you're setting a single config variable, you don't need to use an equal sign between the variable and value. But
|
|
308
|
+
you must use the equal sign if setting multiple config variables.
|
|
309
|
+
|
|
310
|
+
For the full list of available configuration variables, see
|
|
311
|
+
https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_dev_cli_config_values.htm.
|
|
312
|
+
|
|
295
313
|
ALIASES
|
|
296
314
|
$ sf force config set
|
|
297
315
|
|
|
298
316
|
EXAMPLES
|
|
299
317
|
Set the local target-org configuration variable to an org username:
|
|
300
318
|
|
|
301
|
-
$ sf config set target-org
|
|
319
|
+
$ sf config set target-org me@my.org
|
|
302
320
|
|
|
303
321
|
Set the local target-org configuration variable to an alias:
|
|
304
322
|
|
|
305
|
-
$ sf config set target-org
|
|
306
|
-
|
|
307
|
-
Set the global target-org configuration variable:
|
|
323
|
+
$ sf config set target-org my-scratch-org
|
|
308
324
|
|
|
309
|
-
|
|
325
|
+
Set the global target-org and target-dev-hub configuration variables using aliases:
|
|
310
326
|
|
|
311
|
-
|
|
312
|
-
configuration variables:
|
|
313
|
-
|
|
314
|
-
$ sf config set target-org me@my.com
|
|
327
|
+
$ sf config set --global target-org=my-scratch-org target-dev-hub=my-dev-hub
|
|
315
328
|
```
|
|
316
329
|
|
|
317
|
-
_See code: [src/commands/config/set.ts](https://github.com/salesforcecli/plugin-settings/blob/1.4.
|
|
330
|
+
_See code: [src/commands/config/set.ts](https://github.com/salesforcecli/plugin-settings/blob/1.4.34/src/commands/config/set.ts)_
|
|
318
331
|
|
|
319
332
|
## `sf config unset`
|
|
320
333
|
|
|
@@ -325,8 +338,7 @@ USAGE
|
|
|
325
338
|
$ sf config unset [--json] [-g]
|
|
326
339
|
|
|
327
340
|
FLAGS
|
|
328
|
-
-g, --global Unset the configuration variables globally
|
|
329
|
-
project.
|
|
341
|
+
-g, --global Unset the configuration variables globally.
|
|
330
342
|
|
|
331
343
|
GLOBAL FLAGS
|
|
332
344
|
--json Format output as json.
|
|
@@ -337,6 +349,9 @@ DESCRIPTION
|
|
|
337
349
|
Local configuration variables apply only to your current project. Global configuration variables apply in any
|
|
338
350
|
Salesforce DX project.
|
|
339
351
|
|
|
352
|
+
For the full list of available configuration variables, see
|
|
353
|
+
https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_dev_cli_config_values.htm.
|
|
354
|
+
|
|
340
355
|
ALIASES
|
|
341
356
|
$ sf force config unset
|
|
342
357
|
|
|
@@ -350,6 +365,6 @@ EXAMPLES
|
|
|
350
365
|
$ sf config unset target-org api-version --global
|
|
351
366
|
```
|
|
352
367
|
|
|
353
|
-
_See code: [src/commands/config/unset.ts](https://github.com/salesforcecli/plugin-settings/blob/1.4.
|
|
368
|
+
_See code: [src/commands/config/unset.ts](https://github.com/salesforcecli/plugin-settings/blob/1.4.34/src/commands/config/unset.ts)_
|
|
354
369
|
|
|
355
370
|
<!-- commandsstop -->
|
package/messages/config.get.md
CHANGED
|
@@ -4,7 +4,9 @@ Get the value of a configuration variable.
|
|
|
4
4
|
|
|
5
5
|
# description
|
|
6
6
|
|
|
7
|
-
Run "sf config list" to see
|
|
7
|
+
Run "sf config list" to see the configuration variables you've already set and their level (local or global).
|
|
8
|
+
|
|
9
|
+
Run "sf config set" to set a configuration variable. For the full list of available configuration variables, see https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_dev_cli_config_values.htm.
|
|
8
10
|
|
|
9
11
|
# examples
|
|
10
12
|
|
package/messages/config.list.md
CHANGED
|
@@ -4,10 +4,14 @@ List the configuration variables that you've previously set.
|
|
|
4
4
|
|
|
5
5
|
# description
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
A config variable can be global or local, depending on whether you used the --global flag when you set it. Local config variables apply only to the current project and override global config variables, which apply to all projects. You can set all config variables as environment variables. Environment variables override their equivalent local and global config variables.
|
|
8
|
+
|
|
9
|
+
The output of this command takes into account your current context. For example, let's say you run this command from a Salesforce DX project in which you've locally set the "target-org" config variable. The command displays the local value, even if you've also set "target-org" globally. If you haven't set the config variable locally, then the global value is displayed, if set. If you set the SF_TARGET_ORG environment variable, it's displayed as such and overrides any locally or globally set "target-org" config variable.
|
|
10
|
+
|
|
11
|
+
For the full list of available configuration variables, see https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_dev_cli_config_values.htm.
|
|
8
12
|
|
|
9
13
|
# examples
|
|
10
14
|
|
|
11
|
-
- List
|
|
15
|
+
- List the global and local configuration variables that apply to your current context:
|
|
12
16
|
|
|
13
17
|
$ <%= config.bin %> <%= command.id %>
|
package/messages/config.set.md
CHANGED
|
@@ -16,23 +16,23 @@ The resolution order if you've set a flag value in multiple ways is as follows:
|
|
|
16
16
|
|
|
17
17
|
Run "sf config list" to see the configuration variables you've already set and their level (local or global).
|
|
18
18
|
|
|
19
|
+
If you're setting a single config variable, you don't need to use an equal sign between the variable and value. But you must use the equal sign if setting multiple config variables.
|
|
20
|
+
|
|
21
|
+
For the full list of available configuration variables, see https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_dev_cli_config_values.htm.
|
|
22
|
+
|
|
19
23
|
# examples
|
|
20
24
|
|
|
21
25
|
- Set the local target-org configuration variable to an org username:
|
|
22
26
|
|
|
23
|
-
<%= config.bin %> <%= command.id %> target-org
|
|
27
|
+
<%= config.bin %> <%= command.id %> target-org me@my.org
|
|
24
28
|
|
|
25
29
|
- Set the local target-org configuration variable to an alias:
|
|
26
30
|
|
|
27
|
-
<%= config.bin %> <%= command.id %> target-org
|
|
28
|
-
|
|
29
|
-
- Set the global target-org configuration variable:
|
|
30
|
-
|
|
31
|
-
<%= config.bin %> <%= command.id %> --global target-org=my-scratch-org
|
|
31
|
+
<%= config.bin %> <%= command.id %> target-org my-scratch-org
|
|
32
32
|
|
|
33
|
-
- Set
|
|
33
|
+
- Set the global target-org and target-dev-hub configuration variables using aliases:
|
|
34
34
|
|
|
35
|
-
<%= config.bin %> <%= command.id %> target-org
|
|
35
|
+
<%= config.bin %> <%= command.id %> --global target-org=my-scratch-org target-dev-hub=my-dev-hub
|
|
36
36
|
|
|
37
37
|
# flags.global.summary
|
|
38
38
|
|
package/messages/config.unset.md
CHANGED
|
@@ -6,6 +6,8 @@ Unset local or global configuration variables.
|
|
|
6
6
|
|
|
7
7
|
Local configuration variables apply only to your current project. Global configuration variables apply in any Salesforce DX project.
|
|
8
8
|
|
|
9
|
+
For the full list of available configuration variables, see https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_dev_cli_config_values.htm.
|
|
10
|
+
|
|
9
11
|
# examples
|
|
10
12
|
|
|
11
13
|
- Unset the local "target-org" configuration variable:
|
|
@@ -18,7 +20,7 @@ Local configuration variables apply only to your current project. Global configu
|
|
|
18
20
|
|
|
19
21
|
# flags.global.summary
|
|
20
22
|
|
|
21
|
-
Unset the configuration variables globally
|
|
23
|
+
Unset the configuration variables globally.
|
|
22
24
|
|
|
23
25
|
# error.NoConfigKeysFound
|
|
24
26
|
|
package/oclif.manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.4.
|
|
2
|
+
"version": "1.4.34",
|
|
3
3
|
"commands": {
|
|
4
4
|
"alias:list": {
|
|
5
5
|
"id": "alias:list",
|
|
@@ -136,7 +136,7 @@
|
|
|
136
136
|
"config:get": {
|
|
137
137
|
"id": "config:get",
|
|
138
138
|
"summary": "Get the value of a configuration variable.",
|
|
139
|
-
"description": "Run \"sf config list\" to see
|
|
139
|
+
"description": "Run \"sf config list\" to see the configuration variables you've already set and their level (local or global).\n\nRun \"sf config set\" to set a configuration variable. For the full list of available configuration variables, see https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_dev_cli_config_values.htm.",
|
|
140
140
|
"strict": false,
|
|
141
141
|
"pluginName": "@salesforce/plugin-settings",
|
|
142
142
|
"pluginAlias": "@salesforce/plugin-settings",
|
|
@@ -218,7 +218,7 @@
|
|
|
218
218
|
"config:list": {
|
|
219
219
|
"id": "config:list",
|
|
220
220
|
"summary": "List the configuration variables that you've previously set.",
|
|
221
|
-
"description": "
|
|
221
|
+
"description": "A config variable can be global or local, depending on whether you used the --global flag when you set it. Local config variables apply only to the current project and override global config variables, which apply to all projects. You can set all config variables as environment variables. Environment variables override their equivalent local and global config variables.\n\nThe output of this command takes into account your current context. For example, let's say you run this command from a Salesforce DX project in which you've locally set the \"target-org\" config variable. The command displays the local value, even if you've also set \"target-org\" globally. If you haven't set the config variable locally, then the global value is displayed, if set. If you set the SF_TARGET_ORG environment variable, it's displayed as such and overrides any locally or globally set \"target-org\" config variable. \n\nFor the full list of available configuration variables, see https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_dev_cli_config_values.htm.",
|
|
222
222
|
"strict": true,
|
|
223
223
|
"pluginName": "@salesforce/plugin-settings",
|
|
224
224
|
"pluginAlias": "@salesforce/plugin-settings",
|
|
@@ -227,7 +227,7 @@
|
|
|
227
227
|
"force:config:list"
|
|
228
228
|
],
|
|
229
229
|
"examples": [
|
|
230
|
-
"List
|
|
230
|
+
"List the global and local configuration variables that apply to your current context:\n$ <%= config.bin %> <%= command.id %>"
|
|
231
231
|
],
|
|
232
232
|
"deprecateAliases": true,
|
|
233
233
|
"flags": {
|
|
@@ -255,7 +255,7 @@
|
|
|
255
255
|
"config:set": {
|
|
256
256
|
"id": "config:set",
|
|
257
257
|
"summary": "Set one or more configuration variables, such as your default org.",
|
|
258
|
-
"description": "Use configuration variables to set CLI defaults, such as your default org or the API version you want the CLI to use. For example, if you set the \"target-org\" configuration variable, you don't need to specify it as a \"sf deploy metadata\" flag if you're deploying to your default org.\n\nLocal configuration variables apply only to your current project. Global variables, specified with the --global flag, apply in any Salesforce DX project.\n\nThe resolution order if you've set a flag value in multiple ways is as follows:\n\n 1. Flag value specified at the command line.\n 2. Local (project-level) configuration variable.\n 3. Global configuration variable.\n\nRun \"sf config list\" to see the configuration variables you've already set and their level (local or global).",
|
|
258
|
+
"description": "Use configuration variables to set CLI defaults, such as your default org or the API version you want the CLI to use. For example, if you set the \"target-org\" configuration variable, you don't need to specify it as a \"sf deploy metadata\" flag if you're deploying to your default org.\n\nLocal configuration variables apply only to your current project. Global variables, specified with the --global flag, apply in any Salesforce DX project.\n\nThe resolution order if you've set a flag value in multiple ways is as follows:\n\n 1. Flag value specified at the command line.\n 2. Local (project-level) configuration variable.\n 3. Global configuration variable.\n\nRun \"sf config list\" to see the configuration variables you've already set and their level (local or global).\n\nIf you're setting a single config variable, you don't need to use an equal sign between the variable and value. But you must use the equal sign if setting multiple config variables.\n\nFor the full list of available configuration variables, see https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_dev_cli_config_values.htm.",
|
|
259
259
|
"strict": false,
|
|
260
260
|
"pluginName": "@salesforce/plugin-settings",
|
|
261
261
|
"pluginAlias": "@salesforce/plugin-settings",
|
|
@@ -264,10 +264,9 @@
|
|
|
264
264
|
"force:config:set"
|
|
265
265
|
],
|
|
266
266
|
"examples": [
|
|
267
|
-
"Set the local target-org configuration variable to an org username:\n<%= config.bin %> <%= command.id %> target-org
|
|
268
|
-
"Set the local target-org configuration variable to an alias:\n<%= config.bin %> <%= command.id %> target-org
|
|
269
|
-
"Set the global target-org configuration
|
|
270
|
-
"Set a single configuration variable without using an equal sign; this syntax doesn't work when setting multiple configuration variables:\n<%= config.bin %> <%= command.id %> target-org me@my.com"
|
|
267
|
+
"Set the local target-org configuration variable to an org username:\n<%= config.bin %> <%= command.id %> target-org me@my.org",
|
|
268
|
+
"Set the local target-org configuration variable to an alias:\n<%= config.bin %> <%= command.id %> target-org my-scratch-org",
|
|
269
|
+
"Set the global target-org and target-dev-hub configuration variables using aliases:\n<%= config.bin %> <%= command.id %> --global target-org=my-scratch-org target-dev-hub=my-dev-hub"
|
|
271
270
|
],
|
|
272
271
|
"deprecateAliases": true,
|
|
273
272
|
"flags": {
|
|
@@ -340,7 +339,7 @@
|
|
|
340
339
|
"config:unset": {
|
|
341
340
|
"id": "config:unset",
|
|
342
341
|
"summary": "Unset local or global configuration variables.",
|
|
343
|
-
"description": "Local configuration variables apply only to your current project. Global configuration variables apply in any Salesforce DX project.",
|
|
342
|
+
"description": "Local configuration variables apply only to your current project. Global configuration variables apply in any Salesforce DX project.\n\nFor the full list of available configuration variables, see https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_dev_cli_config_values.htm.",
|
|
344
343
|
"strict": false,
|
|
345
344
|
"pluginName": "@salesforce/plugin-settings",
|
|
346
345
|
"pluginAlias": "@salesforce/plugin-settings",
|
|
@@ -376,7 +375,7 @@
|
|
|
376
375
|
"name": "global",
|
|
377
376
|
"type": "boolean",
|
|
378
377
|
"char": "g",
|
|
379
|
-
"summary": "Unset the configuration variables globally
|
|
378
|
+
"summary": "Unset the configuration variables globally.",
|
|
380
379
|
"allowNo": false,
|
|
381
380
|
"deprecateAliases": true
|
|
382
381
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-settings",
|
|
3
3
|
"description": "configure the Salesforce CLI",
|
|
4
|
-
"version": "1.4.
|
|
4
|
+
"version": "1.4.34",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
|
7
7
|
"dependencies": {
|
|
@@ -13,24 +13,24 @@
|
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
15
|
"@oclif/plugin-command-snapshot": "^4.0.14",
|
|
16
|
-
"@oclif/test": "^2.5.
|
|
17
|
-
"@salesforce/cli-plugins-testkit": "^4.
|
|
16
|
+
"@oclif/test": "^2.5.6",
|
|
17
|
+
"@salesforce/cli-plugins-testkit": "^4.4.7",
|
|
18
18
|
"@salesforce/dev-config": "^4.0.1",
|
|
19
|
-
"@salesforce/dev-scripts": "^5.
|
|
19
|
+
"@salesforce/dev-scripts": "^5.11.0",
|
|
20
20
|
"@salesforce/kit": "^3.0.11",
|
|
21
|
-
"@salesforce/plugin-command-reference": "^3.0.
|
|
22
|
-
"@salesforce/plugin-deploy-retrieve": "^1.
|
|
21
|
+
"@salesforce/plugin-command-reference": "^3.0.40",
|
|
22
|
+
"@salesforce/plugin-deploy-retrieve": "^1.18.7",
|
|
23
23
|
"@salesforce/prettier-config": "^0.0.3",
|
|
24
|
-
"@salesforce/ts-sinon": "^1.4.
|
|
24
|
+
"@salesforce/ts-sinon": "^1.4.17",
|
|
25
25
|
"@salesforce/ts-types": "^2.0.6",
|
|
26
26
|
"@swc/core": "^1.3.27",
|
|
27
27
|
"@types/fast-levenshtein": "^0.0.2",
|
|
28
28
|
"@types/fs-extra": "^9.0.13",
|
|
29
|
-
"@types/shelljs": "^0.8.
|
|
29
|
+
"@types/shelljs": "^0.8.13",
|
|
30
30
|
"@typescript-eslint/eslint-plugin": "^5.62.0",
|
|
31
31
|
"@typescript-eslint/parser": "^5.62.0",
|
|
32
|
-
"chai": "^4.3.
|
|
33
|
-
"eslint": "^8.
|
|
32
|
+
"chai": "^4.3.10",
|
|
33
|
+
"eslint": "^8.51.0",
|
|
34
34
|
"eslint-config-prettier": "^8.10.0",
|
|
35
35
|
"eslint-config-salesforce": "^2.0.2",
|
|
36
36
|
"eslint-config-salesforce-license": "^0.2.0",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"eslint-plugin-header": "^3.1.1",
|
|
39
39
|
"eslint-plugin-import": "^2.28.1",
|
|
40
40
|
"eslint-plugin-jsdoc": "^43.0.5",
|
|
41
|
-
"eslint-plugin-sf-plugin": "^1.16.
|
|
41
|
+
"eslint-plugin-sf-plugin": "^1.16.9",
|
|
42
42
|
"fs-extra": "^10.1.0",
|
|
43
43
|
"husky": "^7.0.4",
|
|
44
44
|
"mocha": "^9.2.2",
|
|
@@ -228,7 +228,7 @@
|
|
|
228
228
|
}
|
|
229
229
|
},
|
|
230
230
|
"sfdx": {
|
|
231
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-settings/1.4.
|
|
232
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-settings/1.4.
|
|
231
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-settings/1.4.34.crt",
|
|
232
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-settings/1.4.34.sig"
|
|
233
233
|
}
|
|
234
234
|
}
|