@salesforce/plugin-packaging 1.27.6 → 1.27.8
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 +22 -22
- package/oclif.lock +229 -127
- package/oclif.manifest.json +540 -540
- package/package.json +21 -10
package/package.json
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-packaging",
|
|
3
3
|
"description": "SF plugin that support Salesforce Packaging Platform",
|
|
4
|
-
"version": "1.27.
|
|
4
|
+
"version": "1.27.8",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"author": "Salesforce",
|
|
7
7
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@oclif/core": "^3.
|
|
9
|
+
"@oclif/core": "^3.14.1",
|
|
10
10
|
"@salesforce/core": "^6.1.3",
|
|
11
11
|
"@salesforce/kit": "^3.0.15",
|
|
12
12
|
"@salesforce/packaging": "^3.0.4",
|
|
13
|
-
"@salesforce/sf-plugins-core": "^5.0.
|
|
13
|
+
"@salesforce/sf-plugins-core": "^5.0.5",
|
|
14
14
|
"chalk": "^4.1.2",
|
|
15
15
|
"tslib": "^2"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@oclif/plugin-command-snapshot": "^4.0.16",
|
|
19
19
|
"@salesforce/cli-plugins-testkit": "^4.4.12",
|
|
20
|
-
"@salesforce/dev-scripts": "^
|
|
21
|
-
"@salesforce/plugin-command-reference": "^3.0.
|
|
22
|
-
"@swc/core": "1.3.
|
|
20
|
+
"@salesforce/dev-scripts": "^8.1.1",
|
|
21
|
+
"@salesforce/plugin-command-reference": "^3.0.51",
|
|
22
|
+
"@swc/core": "1.3.100",
|
|
23
23
|
"eslint-plugin-sf-plugin": "^1.16.15",
|
|
24
24
|
"oclif": "^4",
|
|
25
25
|
"shx": "0.3.4",
|
|
26
|
-
"ts-node": "^10.9.
|
|
26
|
+
"ts-node": "^10.9.2",
|
|
27
27
|
"typescript": "^5.2.2"
|
|
28
28
|
},
|
|
29
29
|
"config": {},
|
|
@@ -118,6 +118,7 @@
|
|
|
118
118
|
"clean:lib": "shx rm -rf lib && shx rm -rf coverage && shx rm -rf .nyc_output && shx rm -f oclif.manifest.json",
|
|
119
119
|
"compile": "wireit",
|
|
120
120
|
"format": "wireit",
|
|
121
|
+
"link-check": "wireit",
|
|
121
122
|
"lint": "wireit",
|
|
122
123
|
"postpack": "shx rm -f oclif.manifest.json",
|
|
123
124
|
"prepack": "sf-prepack",
|
|
@@ -189,7 +190,8 @@
|
|
|
189
190
|
"test:command-reference",
|
|
190
191
|
"test:deprecation-policy",
|
|
191
192
|
"lint",
|
|
192
|
-
"test:json-schema"
|
|
193
|
+
"test:json-schema",
|
|
194
|
+
"link-check"
|
|
193
195
|
]
|
|
194
196
|
},
|
|
195
197
|
"test:only": {
|
|
@@ -235,10 +237,19 @@
|
|
|
235
237
|
"schemas"
|
|
236
238
|
],
|
|
237
239
|
"output": []
|
|
240
|
+
},
|
|
241
|
+
"link-check": {
|
|
242
|
+
"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",
|
|
243
|
+
"files": [
|
|
244
|
+
"./*.md",
|
|
245
|
+
"./!(CHANGELOG).md",
|
|
246
|
+
"messages/**/*.md"
|
|
247
|
+
],
|
|
248
|
+
"output": []
|
|
238
249
|
}
|
|
239
250
|
},
|
|
240
251
|
"sfdx": {
|
|
241
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-packaging/1.27.
|
|
242
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-packaging/1.27.
|
|
252
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-packaging/1.27.8.crt",
|
|
253
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-packaging/1.27.8.sig"
|
|
243
254
|
}
|
|
244
255
|
}
|