@salesforce/cli 2.33.1 → 2.33.2
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 +98 -94
- package/dist/hooks/incomplete.js +1 -1
- package/npm-shrinkwrap.json +119 -440
- package/oclif.manifest.json +74 -18
- package/package.json +21 -21
package/oclif.manifest.json
CHANGED
|
@@ -4500,7 +4500,15 @@
|
|
|
4500
4500
|
"This example evaluates all rules against somefile.js.\nInvoking code analyzer without specifying any rules causes all rules to be run.\n\t$ <%= config.bin %> <%= command.id %> --format xml --target \"somefile.js\"\n\nThis example evaluates all rules in the Design and Best Practices categories.\nWhen you specify multiple categories or rulesets, the results are combined with a logical OR.\n\t$ <%= config.bin %> <%= command.id %> --format xml --target \"somefile.js\" --\n\nThis example evaluates all rules except those in the Design or Best Practices categories.\nExclude categories by specifying the negation operator and enclosing the values in single quotes.\n\t$ <%= config.bin %> <%= command.id %> --format xml --target \"somefile.js\" --category '!Design,!Best Practices'\n\nWrap globs in quotes. These examples evaluate rules against all .js files in the current directory, except for IgnoreMe.js.\nUnix example:\n\t$ <%= config.bin %> <%= command.id %> --target './**/*.js,!./**/IgnoreMe.js' ...\nWindows example:\n\t$ <%= config.bin %> <%= command.id %> --target \".\\**\\*.js,!.\\**\\IgnoreMe.js\" ...\n\nThis example scans the project contained in '/my-project' if the current working directory is another directory.\nSpecify tsconfig.json if the current working directory does not contain the tsconfig.json that corresponds to the TypeScript files being scanned.\n\t$ <%= config.bin %> <%= command.id %> --target \"/my-project/**/*.ts\" --tsconfig \"/my-project/tsconfig.json\"\n\nThis example evaluates rules against somefile.js, including Jasmine in the environment variables.\nUses --env to override the default ESLint environment variables to add frameworks.\n\t$ <%= config.bin %> <%= command.id %> --target \"somefile.js\" --env '{\"jasmine\": true}'\n\nThis example evaluates rules aginst somefile.js using eslint-lwc and pmd engines.\nUse --engine to include or exclude engines. Any engine listed will be run, regardless of its current 'disabled' attribute.\n\t$ <%= config.bin %> <%= command.id %> --target \"somefile.js\" --engine \"eslint-lwc,pmd\"\n\nThis example executes CPD engine against known file extensions in \"/some/dir\". CPD helps detect blocks of code duplication in selected languages.\nUse --engine to invoke engines that are not enabled by default.\n\t$ <%= config.bin %> <%= command.id %> --target \"/some/dir\" --engine cpd\n\nThis example executes rules defined in pmd_rule_ref.xml against the files in 'src'.\nTo use PMD with your own rule reference file, use --pmdconfig. Note that rule filters are not applied.\n\t$ <%= config.bin %> <%= command.id %> --target \"src\" --pmdconfig \"pmd_rule_ref.xml\"\n\nThis example uses a custom config to scan the files in 'src'.\nTo use ESLint with your own .eslintrc.json file, use --eslintconfig. Make sure that the directory you run the command from has all the NPM dependencies installed.\n\t$ <%= config.bin %> <%= command.id %> --target \"src\" --eslintconfig \"/home/my/setup/.eslintrc.json\"\n\nThis example uses --normalize-severity to output normalized severity and engine-specific severity across all engines. Normalized severity is: 1 (high), 2 (moderate), and 3 (low).\n\t$ <%= config.bin %> <%= command.id %> --target \"/some-project/\" --format csv --normalize-severity\n\nThis example uses --severity-threshold to throw a non-zero exit code when rule violations of normalized severity 2 or greater are found. If any violations with the specified severity (or greater) are found, the exit code equals the severity of the most severe violation.\n\t$ <%= config.bin %> <%= command.id %> --target \"/some-project/\" --severity-threshold 2\n\nThe paths specified for --projectdir must contain all files specified through --target cumulatively.\n\t$ <%= config.bin %> <%= command.id %> --target \"./myproject/main/default/classes/*.cls\" --projectdir \"./myproject/\"\n\t$ <%= config.bin %> <%= command.id %> --target \"./**/*.cls\" --projectdir \"./\"\n\t$ <%= config.bin %> <%= command.id %> --target \"./dir1/file1.cls,./dir2/file2.cls\" --projectdir \"./dir1/,./dir2/\"\n\nThis example fails because the set of files included in --target is larger than that contained in --projectdir:\n\t$ <%= config.bin %> <%= command.id %> --target \"./**/*.cls\" --projectdir \"./myproject/\""
|
|
4501
4501
|
],
|
|
4502
4502
|
"flags": {
|
|
4503
|
+
"json": {
|
|
4504
|
+
"description": "Format output as json.",
|
|
4505
|
+
"helpGroup": "GLOBAL",
|
|
4506
|
+
"name": "json",
|
|
4507
|
+
"allowNo": false,
|
|
4508
|
+
"type": "boolean"
|
|
4509
|
+
},
|
|
4503
4510
|
"verbose": {
|
|
4511
|
+
"description": "Emit additional command output to stdout.",
|
|
4504
4512
|
"name": "verbose",
|
|
4505
4513
|
"summary": "emit additional command output to stdout",
|
|
4506
4514
|
"allowNo": false,
|
|
@@ -4518,7 +4526,7 @@
|
|
|
4518
4526
|
},
|
|
4519
4527
|
"format": {
|
|
4520
4528
|
"char": "f",
|
|
4521
|
-
"description": "Specifies
|
|
4529
|
+
"description": "Specifies the output format for results written directly to the console.",
|
|
4522
4530
|
"name": "format",
|
|
4523
4531
|
"summary": "specify results output format",
|
|
4524
4532
|
"hasDynamicHelp": false,
|
|
@@ -4577,9 +4585,9 @@
|
|
|
4577
4585
|
"deprecated": {
|
|
4578
4586
|
"message": "The 'ruleset' command parameter is deprecated. Use 'category' instead."
|
|
4579
4587
|
},
|
|
4580
|
-
"description": "
|
|
4588
|
+
"description": "Deprecated. Use category instead. One or more rulesets to run. Specify multiple values as a comma-separated list.",
|
|
4581
4589
|
"name": "ruleset",
|
|
4582
|
-
"summary": "[
|
|
4590
|
+
"summary": "[Deprecated] rulesets to run",
|
|
4583
4591
|
"delimiter": ",",
|
|
4584
4592
|
"hasDynamicHelp": false,
|
|
4585
4593
|
"multiple": true,
|
|
@@ -4607,7 +4615,7 @@
|
|
|
4607
4615
|
},
|
|
4608
4616
|
"target": {
|
|
4609
4617
|
"char": "t",
|
|
4610
|
-
"description": "Specifies the source code location.
|
|
4618
|
+
"description": "Specifies the source code location. Can use glob patterns. Specify multiple values as a comma-separated list. Default is \".\".",
|
|
4611
4619
|
"name": "target",
|
|
4612
4620
|
"summary": "source code location",
|
|
4613
4621
|
"delimiter": ",",
|
|
@@ -4616,7 +4624,7 @@
|
|
|
4616
4624
|
"type": "option"
|
|
4617
4625
|
},
|
|
4618
4626
|
"tsconfig": {
|
|
4619
|
-
"description": "
|
|
4627
|
+
"description": "The location of the tsconfig.json file used by the eslint-typescript engine. The --tsconfig flag can’t be used with --eslintconfig flag.",
|
|
4620
4628
|
"name": "tsconfig",
|
|
4621
4629
|
"summary": "location of tsconfig.json file",
|
|
4622
4630
|
"hasDynamicHelp": false,
|
|
@@ -4624,7 +4632,7 @@
|
|
|
4624
4632
|
"type": "option"
|
|
4625
4633
|
},
|
|
4626
4634
|
"eslintconfig": {
|
|
4627
|
-
"description": "Specifies the location of eslintrc config to customize
|
|
4635
|
+
"description": "Specifies the location of eslintrc config to customize ESLint engine. The --tsconfig flag can’t be used with --eslintconfig flag.",
|
|
4628
4636
|
"name": "eslintconfig",
|
|
4629
4637
|
"summary": "specify the location of eslintrc config to customize eslint engine",
|
|
4630
4638
|
"hasDynamicHelp": false,
|
|
@@ -4632,26 +4640,33 @@
|
|
|
4632
4640
|
"type": "option"
|
|
4633
4641
|
},
|
|
4634
4642
|
"pmdconfig": {
|
|
4635
|
-
"description": "Specifies the location of PMD rule reference XML file to customize rule selection.",
|
|
4643
|
+
"description": "Specifies the location of the PMD rule reference XML file to customize rule selection.",
|
|
4636
4644
|
"name": "pmdconfig",
|
|
4637
4645
|
"summary": "specify location of PMD rule reference XML file to customize rule selection",
|
|
4638
4646
|
"hasDynamicHelp": false,
|
|
4639
4647
|
"multiple": false,
|
|
4640
4648
|
"type": "option"
|
|
4641
4649
|
},
|
|
4650
|
+
"preview-pmd7": {
|
|
4651
|
+
"description": "Uses PMD version 7.0.0-rc4 instead of 6.55.0 when running PMD and CPD engines.",
|
|
4652
|
+
"name": "preview-pmd7",
|
|
4653
|
+
"summary": "use PMD version 7.0.0-rc4 when running PMD and CPD",
|
|
4654
|
+
"allowNo": false,
|
|
4655
|
+
"type": "boolean"
|
|
4656
|
+
},
|
|
4642
4657
|
"env": {
|
|
4643
4658
|
"deprecated": {
|
|
4644
4659
|
"message": "--env parameter is being deprecated, and will be removed in a future release."
|
|
4645
4660
|
},
|
|
4646
|
-
"description": "
|
|
4661
|
+
"description": "Deprecated. Overrides ESLint's default environmental variables, in JSON-formatted string.",
|
|
4647
4662
|
"name": "env",
|
|
4648
|
-
"summary": "[
|
|
4663
|
+
"summary": "[Deprecated] override ESLint's default environment variables, in JSON-formatted string",
|
|
4649
4664
|
"hasDynamicHelp": false,
|
|
4650
4665
|
"multiple": false,
|
|
4651
4666
|
"type": "option"
|
|
4652
4667
|
},
|
|
4653
4668
|
"verbose-violations": {
|
|
4654
|
-
"description": "Returns retire-js violation
|
|
4669
|
+
"description": "Returns retire-js violation-message details about each vulnerability, including summary, common vulnerabilities and exposures (CVE), and URLs.",
|
|
4655
4670
|
"name": "verbose-violations",
|
|
4656
4671
|
"summary": "return retire-js violation message details",
|
|
4657
4672
|
"allowNo": false,
|
|
@@ -4664,7 +4679,11 @@
|
|
|
4664
4679
|
"pluginAlias": "@salesforce/sfdx-scanner",
|
|
4665
4680
|
"pluginName": "@salesforce/sfdx-scanner",
|
|
4666
4681
|
"pluginType": "jit",
|
|
4682
|
+
"strict": true,
|
|
4667
4683
|
"summary": "scan a codebase with a selection of rules",
|
|
4684
|
+
"enableJsonFlag": true,
|
|
4685
|
+
"SF_ENV": "SF_ENV",
|
|
4686
|
+
"invocation": "scanner run",
|
|
4668
4687
|
"isESM": false,
|
|
4669
4688
|
"relativePath": [
|
|
4670
4689
|
"lib",
|
|
@@ -4705,7 +4724,7 @@
|
|
|
4705
4724
|
},
|
|
4706
4725
|
"path": {
|
|
4707
4726
|
"char": "p",
|
|
4708
|
-
"description": "One or more paths (such as a directory or JAR file) to
|
|
4727
|
+
"description": "One or more paths (such as a directory or JAR file) to custom rule definitions. Specify multiple values as a comma-separated list.",
|
|
4709
4728
|
"name": "path",
|
|
4710
4729
|
"required": true,
|
|
4711
4730
|
"summary": "one or more paths (such as a directory or JAR file) to custom rule definitions",
|
|
@@ -4723,6 +4742,8 @@
|
|
|
4723
4742
|
"pluginType": "jit",
|
|
4724
4743
|
"strict": true,
|
|
4725
4744
|
"summary": "add custom rules to Salesforce Code Analyzer's registry",
|
|
4745
|
+
"enableJsonFlag": true,
|
|
4746
|
+
"SF_ENV": "SF_ENV",
|
|
4726
4747
|
"isESM": false,
|
|
4727
4748
|
"relativePath": [
|
|
4728
4749
|
"lib",
|
|
@@ -4767,10 +4788,18 @@
|
|
|
4767
4788
|
"type": "option"
|
|
4768
4789
|
},
|
|
4769
4790
|
"verbose": {
|
|
4791
|
+
"description": "Emit additional command output to stdout.",
|
|
4770
4792
|
"name": "verbose",
|
|
4771
4793
|
"summary": "emit additional command output to stdout",
|
|
4772
4794
|
"allowNo": false,
|
|
4773
4795
|
"type": "boolean"
|
|
4796
|
+
},
|
|
4797
|
+
"preview-pmd7": {
|
|
4798
|
+
"description": "Uses PMD version 7.0.0-rc4 instead of 6.55.0 to describe PMD and CPD rules.",
|
|
4799
|
+
"name": "preview-pmd7",
|
|
4800
|
+
"summary": "use PMD version 7.0.0-rc4 to describe PMD and CPD rules",
|
|
4801
|
+
"allowNo": false,
|
|
4802
|
+
"type": "boolean"
|
|
4774
4803
|
}
|
|
4775
4804
|
},
|
|
4776
4805
|
"hasDynamicHelp": false,
|
|
@@ -4781,6 +4810,8 @@
|
|
|
4781
4810
|
"pluginType": "jit",
|
|
4782
4811
|
"strict": true,
|
|
4783
4812
|
"summary": "provide detailed information about a rule",
|
|
4813
|
+
"enableJsonFlag": true,
|
|
4814
|
+
"SF_ENV": "SF_ENV",
|
|
4784
4815
|
"isESM": false,
|
|
4785
4816
|
"relativePath": [
|
|
4786
4817
|
"lib",
|
|
@@ -4815,6 +4846,7 @@
|
|
|
4815
4846
|
"type": "boolean"
|
|
4816
4847
|
},
|
|
4817
4848
|
"verbose": {
|
|
4849
|
+
"description": "Emit additional command output to stdout.",
|
|
4818
4850
|
"name": "verbose",
|
|
4819
4851
|
"summary": "emit additional command output to stdout",
|
|
4820
4852
|
"allowNo": false,
|
|
@@ -4835,9 +4867,9 @@
|
|
|
4835
4867
|
"deprecated": {
|
|
4836
4868
|
"message": "The 'ruleset' command parameter is deprecated. Use 'category' instead"
|
|
4837
4869
|
},
|
|
4838
|
-
"description": "
|
|
4870
|
+
"description": "Deprecated. Use category instead. Selects rules by ruleset. Enter multiple values as a comma-separated list.",
|
|
4839
4871
|
"name": "ruleset",
|
|
4840
|
-
"summary": "[
|
|
4872
|
+
"summary": "[Deprecated] select rules by ruleset",
|
|
4841
4873
|
"delimiter": ",",
|
|
4842
4874
|
"hasDynamicHelp": false,
|
|
4843
4875
|
"multiple": true,
|
|
@@ -4872,6 +4904,13 @@
|
|
|
4872
4904
|
"sfge"
|
|
4873
4905
|
],
|
|
4874
4906
|
"type": "option"
|
|
4907
|
+
},
|
|
4908
|
+
"preview-pmd7": {
|
|
4909
|
+
"description": "Uses PMD version 7.0.0-rc4 instead of 6.55.0 to list PMD and CPD rules.",
|
|
4910
|
+
"name": "preview-pmd7",
|
|
4911
|
+
"summary": "use PMD version 7.0.0-rc4 to list PMD and CPD rules",
|
|
4912
|
+
"allowNo": false,
|
|
4913
|
+
"type": "boolean"
|
|
4875
4914
|
}
|
|
4876
4915
|
},
|
|
4877
4916
|
"hasDynamicHelp": false,
|
|
@@ -4882,6 +4921,8 @@
|
|
|
4882
4921
|
"pluginType": "jit",
|
|
4883
4922
|
"strict": true,
|
|
4884
4923
|
"summary": "list basic information about all rules matching provided criteria",
|
|
4924
|
+
"enableJsonFlag": true,
|
|
4925
|
+
"SF_ENV": "SF_ENV",
|
|
4885
4926
|
"isESM": false,
|
|
4886
4927
|
"relativePath": [
|
|
4887
4928
|
"lib",
|
|
@@ -4916,6 +4957,7 @@
|
|
|
4916
4957
|
"type": "boolean"
|
|
4917
4958
|
},
|
|
4918
4959
|
"verbose": {
|
|
4960
|
+
"description": "Emit additional command output to stdout.",
|
|
4919
4961
|
"name": "verbose",
|
|
4920
4962
|
"summary": "emit additional command output to stdout",
|
|
4921
4963
|
"allowNo": false,
|
|
@@ -4948,6 +4990,8 @@
|
|
|
4948
4990
|
"pluginType": "jit",
|
|
4949
4991
|
"strict": true,
|
|
4950
4992
|
"summary": "remove custom rules from the registry of available rules",
|
|
4993
|
+
"enableJsonFlag": true,
|
|
4994
|
+
"SF_ENV": "SF_ENV",
|
|
4951
4995
|
"isESM": false,
|
|
4952
4996
|
"relativePath": [
|
|
4953
4997
|
"lib",
|
|
@@ -4974,7 +5018,15 @@
|
|
|
4974
5018
|
"The paths specified for --projectdir must contain all files specified through --target cumulatively.\n\t$ <%= config.bin %> <%= command.id %> --target \"./myproject/main/default/classes/*.cls\" --projectdir \"./myproject/\"\n\t$ <%= config.bin %> <%= command.id %> --target \"./**/*.cls\" --projectdir \"./\"\n\t$ <%= config.bin %> <%= command.id %> --target \"./dir1/file1.cls,./dir2/file2.cls\" --projectdir \"./dir1/,./dir2/\"\nThis example fails because the set of files included in --target is larger than that contained in --projectdir:\n\t$ <%= config.bin %> <%= command.id %> --target \"./**/*.cls\" --projectdir \"./myproject/\"\nGlobs must be wrapped in quotes, as in these Windows and Unix examples, which evaluate rules against all .cls files in the current directory and subdirectories except for IgnoreMe.cls:\nUnix example:\n\t$ <%= config.bin %> <%= command.id %> --target \"./**/*.cls,!./**/IgnoreMe.cls\" ...\nWindows example:\n\t$ <%= config.bin %> <%= command.id %> --target \".\\**\\*.cls,!.\\**\\IgnoreMe.cls\" ...\nYou can target individual methods within a file with a suffix hash (#) on the file's path, and with a semi-colon-delimited list of method names. This syntax is incompatible with globs and directories. This example evaluates rules against all methods named Method1 or Method2 in File1.cls, and all methods named Method3 in File2.cls:\n\t$ <%= config.bin %> <%= command.id %> --target \"./File1.cls#Method1;Method2,./File2.cls#Method3\" ...\nUse --normalize-severity to output a normalized severity across all engines, in addition to the engine-specific severity. Normalized severity is 1 (high), 2 (moderate), and 3 (low):\n\t$ <%= config.bin %> <%= command.id %> --target \"./some-project/\" --projectdir \"./some-project/\" --format csv --normalize-severity\nUse --severity-threshold to throw a non-zero exit code when rule violations of a specific normalized severity or greater are found. If there are any rule violations with a severity of 2 or 1, the exit code is equal to the severity of the most severe violation:\n\t$ <%= config.bin %> <%= command.id %> --target \"./some-project/\" --projectdir \"./some-project/\" --severity-threshold 2\nuse --rule-thread-count to allow more (or fewer) entrypoints to be evaluated concurrently:\n\t$ <%= config.bin %> <%= command.id %> --rule-thread-count 6 ...\nUse --rule-thread-timeout to increase or decrease the maximum runtime for a single entrypoint evaluation. This increases the timeout from the 15-minute default to 150 minutes:\n\t$ <%= config.bin %> <%= command.id %> --rule-thread-timeout 9000000 ...\nUse --sfgejvmargs to pass Java Virtual Machine args to override system defaults while executing Salesforce Graph Engine's rules.\nThe example overrides the system's default heap space allocation to 8 GB and decreases chances of encountering OutOfMemory error.\n\t$ <%= config.bin %> <%= command.id %> --sfgejvmargs \"-Xmx8g\" ...\nUse --with-pilot to allow execution of pilot rules:\nThis example allows pilot rules in the \"Performance\" category to execute.\n\t$ <%= config.bin %> <%= command.id %> --category 'Performance' --with-pilot ..."
|
|
4975
5019
|
],
|
|
4976
5020
|
"flags": {
|
|
5021
|
+
"json": {
|
|
5022
|
+
"description": "Format output as json.",
|
|
5023
|
+
"helpGroup": "GLOBAL",
|
|
5024
|
+
"name": "json",
|
|
5025
|
+
"allowNo": false,
|
|
5026
|
+
"type": "boolean"
|
|
5027
|
+
},
|
|
4977
5028
|
"verbose": {
|
|
5029
|
+
"description": "Emit additional command output to stdout.",
|
|
4978
5030
|
"name": "verbose",
|
|
4979
5031
|
"summary": "emit additional command output to stdout",
|
|
4980
5032
|
"allowNo": false,
|
|
@@ -4992,7 +5044,7 @@
|
|
|
4992
5044
|
},
|
|
4993
5045
|
"format": {
|
|
4994
5046
|
"char": "f",
|
|
4995
|
-
"description": "Specifies
|
|
5047
|
+
"description": "Specifies the output format for results written directly to the console.",
|
|
4996
5048
|
"name": "format",
|
|
4997
5049
|
"summary": "specify results output format",
|
|
4998
5050
|
"hasDynamicHelp": false,
|
|
@@ -5064,7 +5116,7 @@
|
|
|
5064
5116
|
"type": "option"
|
|
5065
5117
|
},
|
|
5066
5118
|
"rule-thread-count": {
|
|
5067
|
-
"description": "Specifies number of rule
|
|
5119
|
+
"description": "Specifies the number of rule-evaluation threads or how many entry points can be evaluated concurrently. Inherits its value from the SFGE_RULE_THREAD_COUNT environment variable, if set. The default is 4.",
|
|
5068
5120
|
"env": "SFGE_RULE_THREAD_COUNT",
|
|
5069
5121
|
"name": "rule-thread-count",
|
|
5070
5122
|
"summary": "specify number of threads that evaluate DFA rules. Alternatively, set value using environment variable `SFGE_RULE_THREAD_COUNT`. Default is 4",
|
|
@@ -5073,7 +5125,7 @@
|
|
|
5073
5125
|
"type": "option"
|
|
5074
5126
|
},
|
|
5075
5127
|
"rule-thread-timeout": {
|
|
5076
|
-
"description": "Specifies time limit for evaluating a single
|
|
5128
|
+
"description": "Specifies the time limit for evaluating a single entry point in milliseconds. Inherits its value from the SFGE_RULE_THREAD_TIMEOUT environment variable, if set. The default is 900,000 ms or 15 minutes.",
|
|
5077
5129
|
"env": "SFGE_RULE_THREAD_TIMEOUT",
|
|
5078
5130
|
"name": "rule-thread-timeout",
|
|
5079
5131
|
"summary": "specify timeout for individual rule threads in milliseconds. Alternatively, set the timeout value using environment variable `SFGE_RULE_THREAD_TIMEOUT`. Default: 900000 ms",
|
|
@@ -5098,7 +5150,7 @@
|
|
|
5098
5150
|
"type": "option"
|
|
5099
5151
|
},
|
|
5100
5152
|
"pathexplimit": {
|
|
5101
|
-
"description": "Specifies a path expansion upper boundary to limit the complexity of code Graph Engine analyzes
|
|
5153
|
+
"description": "Specifies a path expansion upper boundary to limit the complexity of code Graph Engine analyzes before failing fast. Set the value to -1 to remove any upper boundary. --pathexplimit inherits value from SFGE_PATH_EXPANSION_LIMIT env-var, if set. Its default value is derived from JVM heap space allocation.",
|
|
5102
5154
|
"env": "SFGE_PATH_EXPANSION_LIMIT",
|
|
5103
5155
|
"name": "pathexplimit",
|
|
5104
5156
|
"summary": "specify a path expansion upper boundary to limit the complexity of code that Graph Engine analyzes. Alternatively, set the value using environment variable `SFGE_PATH_EXPANSION_LIMIT`",
|
|
@@ -5113,7 +5165,11 @@
|
|
|
5113
5165
|
"pluginAlias": "@salesforce/sfdx-scanner",
|
|
5114
5166
|
"pluginName": "@salesforce/sfdx-scanner",
|
|
5115
5167
|
"pluginType": "jit",
|
|
5168
|
+
"strict": true,
|
|
5116
5169
|
"summary": "scan codebase with all DFA rules",
|
|
5170
|
+
"enableJsonFlag": true,
|
|
5171
|
+
"SF_ENV": "SF_ENV",
|
|
5172
|
+
"invocation": "scanner run dfa",
|
|
5117
5173
|
"isESM": false,
|
|
5118
5174
|
"relativePath": [
|
|
5119
5175
|
"lib",
|
|
@@ -5133,5 +5189,5 @@
|
|
|
5133
5189
|
]
|
|
5134
5190
|
}
|
|
5135
5191
|
},
|
|
5136
|
-
"version": "2.33.
|
|
5192
|
+
"version": "2.33.2"
|
|
5137
5193
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
3
|
"description": "The Salesforce CLI",
|
|
4
|
-
"version": "2.33.
|
|
4
|
+
"version": "2.33.2",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bin": {
|
|
7
7
|
"sf": "./bin/run.js",
|
|
@@ -77,11 +77,11 @@
|
|
|
77
77
|
"@salesforce/plugin-community": "3.0.25",
|
|
78
78
|
"@salesforce/plugin-dev": "2.1.13",
|
|
79
79
|
"@salesforce/plugin-devops-center": "1.2.8",
|
|
80
|
-
"@salesforce/plugin-env": "3.0.
|
|
80
|
+
"@salesforce/plugin-env": "3.0.25",
|
|
81
81
|
"@salesforce/plugin-functions": "1.23.0",
|
|
82
82
|
"@salesforce/plugin-signups": "2.0.28",
|
|
83
83
|
"@salesforce/sfdx-plugin-lwc-test": "1.2.0",
|
|
84
|
-
"@salesforce/sfdx-scanner": "3.
|
|
84
|
+
"@salesforce/sfdx-scanner": "3.22.0"
|
|
85
85
|
},
|
|
86
86
|
"devPlugins": [
|
|
87
87
|
"@oclif/plugin-command-snapshot",
|
|
@@ -136,36 +136,36 @@
|
|
|
136
136
|
},
|
|
137
137
|
"dependencies": {
|
|
138
138
|
"@inquirer/select": "^1.3.1",
|
|
139
|
-
"@oclif/core": "3.
|
|
140
|
-
"@oclif/plugin-autocomplete": "3.0.
|
|
139
|
+
"@oclif/core": "3.25.0",
|
|
140
|
+
"@oclif/plugin-autocomplete": "3.0.13",
|
|
141
141
|
"@oclif/plugin-commands": "3.2.0",
|
|
142
|
-
"@oclif/plugin-help": "6.0.
|
|
142
|
+
"@oclif/plugin-help": "6.0.18",
|
|
143
143
|
"@oclif/plugin-not-found": "3.0.14",
|
|
144
|
-
"@oclif/plugin-plugins": "4.3.
|
|
144
|
+
"@oclif/plugin-plugins": "4.3.5",
|
|
145
145
|
"@oclif/plugin-search": "1.0.20",
|
|
146
146
|
"@oclif/plugin-update": "4.2.0",
|
|
147
147
|
"@oclif/plugin-version": "2.0.14",
|
|
148
|
-
"@oclif/plugin-warn-if-update-available": "3.0.
|
|
149
|
-
"@oclif/plugin-which": "3.1.
|
|
148
|
+
"@oclif/plugin-warn-if-update-available": "3.0.14",
|
|
149
|
+
"@oclif/plugin-which": "3.1.4",
|
|
150
150
|
"@salesforce/core": "^6.1.4",
|
|
151
|
-
"@salesforce/plugin-apex": "3.0.
|
|
152
|
-
"@salesforce/plugin-auth": "3.3.
|
|
153
|
-
"@salesforce/plugin-data": "3.1.
|
|
154
|
-
"@salesforce/plugin-deploy-retrieve": "3.2.
|
|
155
|
-
"@salesforce/plugin-info": "3.0.
|
|
151
|
+
"@salesforce/plugin-apex": "3.0.30",
|
|
152
|
+
"@salesforce/plugin-auth": "3.3.23",
|
|
153
|
+
"@salesforce/plugin-data": "3.1.9",
|
|
154
|
+
"@salesforce/plugin-deploy-retrieve": "3.2.31",
|
|
155
|
+
"@salesforce/plugin-info": "3.0.31",
|
|
156
156
|
"@salesforce/plugin-limits": "3.1.13",
|
|
157
|
-
"@salesforce/plugin-marketplace": "1.0.
|
|
158
|
-
"@salesforce/plugin-org": "3.4.
|
|
157
|
+
"@salesforce/plugin-marketplace": "1.0.27",
|
|
158
|
+
"@salesforce/plugin-org": "3.4.3",
|
|
159
159
|
"@salesforce/plugin-packaging": "2.1.12",
|
|
160
160
|
"@salesforce/plugin-schema": "3.1.7",
|
|
161
161
|
"@salesforce/plugin-settings": "2.0.31",
|
|
162
|
-
"@salesforce/plugin-sobject": "1.1.
|
|
162
|
+
"@salesforce/plugin-sobject": "1.1.18",
|
|
163
163
|
"@salesforce/plugin-source": "3.1.20",
|
|
164
164
|
"@salesforce/plugin-telemetry": "3.1.16",
|
|
165
165
|
"@salesforce/plugin-templates": "56.0.21",
|
|
166
166
|
"@salesforce/plugin-trust": "3.3.16",
|
|
167
|
-
"@salesforce/plugin-user": "3.3.
|
|
168
|
-
"@salesforce/sf-plugins-core": "7.1.
|
|
167
|
+
"@salesforce/plugin-user": "3.3.3",
|
|
168
|
+
"@salesforce/sf-plugins-core": "7.1.15",
|
|
169
169
|
"chalk": "^5.3.0",
|
|
170
170
|
"debug": "^4.3.4",
|
|
171
171
|
"strip-ansi": "^7.1.0"
|
|
@@ -254,8 +254,8 @@
|
|
|
254
254
|
"@salesforce/plugin-release-management": "^4.7.7",
|
|
255
255
|
"@salesforce/ts-sinon": "^1.4.19",
|
|
256
256
|
"@types/debug": "^4.1.12",
|
|
257
|
-
"aws-sdk": "^2.
|
|
258
|
-
"oclif": "^4.4
|
|
257
|
+
"aws-sdk": "^2.1575.0",
|
|
258
|
+
"oclif": "^4.5.4",
|
|
259
259
|
"ts-node": "^10.9.1",
|
|
260
260
|
"typescript": "^5"
|
|
261
261
|
},
|