@salesforce/plugin-apex 3.0.7 → 3.0.9
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 +20 -14
- package/lib/commands/apex/get/log.js.map +1 -1
- package/lib/commands/apex/list/log.js.map +1 -1
- package/lib/commands/apex/run/test.js.map +1 -1
- package/lib/commands/apex/run.js.map +1 -1
- package/lib/commands/apex/tail/log.js.map +1 -1
- package/lib/legacyColorization.js.map +1 -1
- package/lib/reporters/jsonReporter.js.map +1 -1
- package/lib/reporters/runReporter.js.map +1 -1
- package/lib/reporters/testReporter.js.map +1 -1
- package/lib/utils.js.map +1 -1
- package/messages/runtest.md +1 -1
- package/oclif.lock +357 -215
- package/oclif.manifest.json +8 -8
- package/package.json +28 -17
package/oclif.manifest.json
CHANGED
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"name": "target-org",
|
|
31
31
|
"noCacheDefault": true,
|
|
32
32
|
"required": true,
|
|
33
|
-
"summary": "Username or alias of the target org.",
|
|
33
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
34
34
|
"hasDynamicHelp": true,
|
|
35
35
|
"multiple": false,
|
|
36
36
|
"type": "option"
|
|
@@ -130,7 +130,7 @@
|
|
|
130
130
|
"name": "target-org",
|
|
131
131
|
"noCacheDefault": true,
|
|
132
132
|
"required": true,
|
|
133
|
-
"summary": "Username or alias of the target org.",
|
|
133
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
134
134
|
"hasDynamicHelp": true,
|
|
135
135
|
"multiple": false,
|
|
136
136
|
"type": "option"
|
|
@@ -275,7 +275,7 @@
|
|
|
275
275
|
"name": "target-org",
|
|
276
276
|
"noCacheDefault": true,
|
|
277
277
|
"required": true,
|
|
278
|
-
"summary": "Username or alias of the target org.",
|
|
278
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
279
279
|
"hasDynamicHelp": true,
|
|
280
280
|
"multiple": false,
|
|
281
281
|
"type": "option"
|
|
@@ -440,7 +440,7 @@
|
|
|
440
440
|
"name": "target-org",
|
|
441
441
|
"noCacheDefault": true,
|
|
442
442
|
"required": true,
|
|
443
|
-
"summary": "Username or alias of the target org.",
|
|
443
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
444
444
|
"hasDynamicHelp": true,
|
|
445
445
|
"multiple": false,
|
|
446
446
|
"type": "option"
|
|
@@ -552,7 +552,7 @@
|
|
|
552
552
|
"name": "target-org",
|
|
553
553
|
"noCacheDefault": true,
|
|
554
554
|
"required": true,
|
|
555
|
-
"summary": "Username or alias of the target org.",
|
|
555
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
556
556
|
"hasDynamicHelp": true,
|
|
557
557
|
"multiple": false,
|
|
558
558
|
"type": "option"
|
|
@@ -669,7 +669,7 @@
|
|
|
669
669
|
"tests"
|
|
670
670
|
],
|
|
671
671
|
"name": "suite-names",
|
|
672
|
-
"summary": "Apex test suite names to run
|
|
672
|
+
"summary": "Apex test suite names to run.",
|
|
673
673
|
"delimiter": ",",
|
|
674
674
|
"hasDynamicHelp": false,
|
|
675
675
|
"multiple": true,
|
|
@@ -795,7 +795,7 @@
|
|
|
795
795
|
"name": "target-org",
|
|
796
796
|
"noCacheDefault": true,
|
|
797
797
|
"required": true,
|
|
798
|
-
"summary": "Username or alias of the target org.",
|
|
798
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
799
799
|
"hasDynamicHelp": true,
|
|
800
800
|
"multiple": false,
|
|
801
801
|
"type": "option"
|
|
@@ -909,5 +909,5 @@
|
|
|
909
909
|
]
|
|
910
910
|
}
|
|
911
911
|
},
|
|
912
|
-
"version": "3.0.
|
|
912
|
+
"version": "3.0.9"
|
|
913
913
|
}
|
package/package.json
CHANGED
|
@@ -1,28 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-apex",
|
|
3
3
|
"description": "Apex commands",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.9",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@oclif/core": "^3.
|
|
9
|
-
"@salesforce/apex-node": "^
|
|
10
|
-
"@salesforce/core": "^
|
|
11
|
-
"@salesforce/sf-plugins-core": "^
|
|
8
|
+
"@oclif/core": "^3.14.1",
|
|
9
|
+
"@salesforce/apex-node": "^3.0.1",
|
|
10
|
+
"@salesforce/core": "^6.4.1",
|
|
11
|
+
"@salesforce/sf-plugins-core": "^5.0.8",
|
|
12
12
|
"chalk": "^5.3.0",
|
|
13
13
|
"color-convert": "^2.0.1",
|
|
14
14
|
"color-name": "^2.0.0"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
|
-
"@oclif/plugin-command-snapshot": "^5.0.
|
|
18
|
-
"@salesforce/cli-plugins-testkit": "^5.
|
|
19
|
-
"@salesforce/dev-scripts": "^
|
|
20
|
-
"@salesforce/plugin-command-reference": "^3.0.
|
|
17
|
+
"@oclif/plugin-command-snapshot": "^5.0.4",
|
|
18
|
+
"@salesforce/cli-plugins-testkit": "^5.1.1",
|
|
19
|
+
"@salesforce/dev-scripts": "^8.1.1",
|
|
20
|
+
"@salesforce/plugin-command-reference": "^3.0.49",
|
|
21
21
|
"@types/color-convert": "^2.0.3",
|
|
22
22
|
"eslint-plugin-sf-plugin": "^1.16.15",
|
|
23
|
-
"oclif": "^4.0.
|
|
23
|
+
"oclif": "^4.0.4",
|
|
24
24
|
"shx": "^0.3.4",
|
|
25
|
-
"ts-node": "^10.9.
|
|
25
|
+
"ts-node": "^10.9.2",
|
|
26
26
|
"typescript": "^5.2.2"
|
|
27
27
|
},
|
|
28
28
|
"engines": {
|
|
@@ -90,6 +90,7 @@
|
|
|
90
90
|
"compile": "wireit",
|
|
91
91
|
"docs": "sf-docs",
|
|
92
92
|
"format": "wireit",
|
|
93
|
+
"link-check": "wireit",
|
|
93
94
|
"lint": "wireit",
|
|
94
95
|
"postpack": "shx rm -f oclif.manifest.json oclif.lock",
|
|
95
96
|
"prepack": "sf-prepack",
|
|
@@ -161,7 +162,8 @@
|
|
|
161
162
|
"test:command-reference",
|
|
162
163
|
"test:deprecation-policy",
|
|
163
164
|
"lint",
|
|
164
|
-
"test:json-schema"
|
|
165
|
+
"test:json-schema",
|
|
166
|
+
"link-check"
|
|
165
167
|
]
|
|
166
168
|
},
|
|
167
169
|
"test:only": {
|
|
@@ -180,7 +182,7 @@
|
|
|
180
182
|
"output": []
|
|
181
183
|
},
|
|
182
184
|
"test:command-reference": {
|
|
183
|
-
"command": "ts-node \"./bin/dev.js\" commandreference:generate --erroronwarnings",
|
|
185
|
+
"command": "node --loader ts-node/esm --no-warnings=ExperimentalWarning \"./bin/dev.js\" commandreference:generate --erroronwarnings",
|
|
184
186
|
"files": [
|
|
185
187
|
"src/**/*.ts",
|
|
186
188
|
"messages/**",
|
|
@@ -191,7 +193,7 @@
|
|
|
191
193
|
]
|
|
192
194
|
},
|
|
193
195
|
"test:deprecation-policy": {
|
|
194
|
-
"command": "ts-node \"./bin/dev.js\" snapshot:compare",
|
|
196
|
+
"command": "node --loader ts-node/esm --no-warnings=ExperimentalWarning \"./bin/dev.js\" snapshot:compare",
|
|
195
197
|
"files": [
|
|
196
198
|
"src/**/*.ts"
|
|
197
199
|
],
|
|
@@ -201,18 +203,27 @@
|
|
|
201
203
|
]
|
|
202
204
|
},
|
|
203
205
|
"test:json-schema": {
|
|
204
|
-
"command": "ts-node \"./bin/dev.js\" schema:compare",
|
|
206
|
+
"command": "node --loader ts-node/esm --no-warnings=ExperimentalWarning \"./bin/dev.js\" schema:compare",
|
|
205
207
|
"files": [
|
|
206
208
|
"src/**/*.ts",
|
|
207
209
|
"schemas"
|
|
208
210
|
],
|
|
209
211
|
"output": []
|
|
212
|
+
},
|
|
213
|
+
"link-check": {
|
|
214
|
+
"command": "node -e \"process.exit(process.env.CI ? 0 : 1)\" || linkinator \"**/*.md\" --skip \"CHANGELOG.md|node_modules|test/|confluence.internal.salesforce.com|%s\" --markdown --retry --directory-listing --verbosity error",
|
|
215
|
+
"files": [
|
|
216
|
+
"./*.md",
|
|
217
|
+
"./!(CHANGELOG).md",
|
|
218
|
+
"messages/**/*.md"
|
|
219
|
+
],
|
|
220
|
+
"output": []
|
|
210
221
|
}
|
|
211
222
|
},
|
|
212
223
|
"exports": "./lib/index.js",
|
|
213
224
|
"type": "module",
|
|
214
225
|
"sfdx": {
|
|
215
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-apex/3.0.
|
|
216
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-apex/3.0.
|
|
226
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-apex/3.0.9.crt",
|
|
227
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-apex/3.0.9.sig"
|
|
217
228
|
}
|
|
218
229
|
}
|