@salesforce/plugin-packaging 1.9.4 → 1.9.6
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/lib/commands/force/package/beta/convert.js +11 -3
- package/lib/commands/force/package/beta/convert.js.map +1 -1
- package/lib/commands/force/package/beta/create.js +1 -4
- package/lib/commands/force/package/beta/create.js.map +1 -1
- package/lib/commands/force/package/beta/delete.js +6 -3
- package/lib/commands/force/package/beta/delete.js.map +1 -1
- package/lib/commands/force/package/beta/install/report.js +1 -4
- package/lib/commands/force/package/beta/install/report.js.map +1 -1
- package/lib/commands/force/package/beta/install.d.ts +1 -3
- package/lib/commands/force/package/beta/install.js +29 -76
- package/lib/commands/force/package/beta/install.js.map +1 -1
- package/lib/commands/force/package/beta/list.js +2 -6
- package/lib/commands/force/package/beta/list.js.map +1 -1
- package/lib/commands/force/package/beta/uninstall/report.js +1 -2
- package/lib/commands/force/package/beta/uninstall/report.js.map +1 -1
- package/lib/commands/force/package/beta/uninstall.d.ts +0 -1
- package/lib/commands/force/package/beta/uninstall.js +6 -29
- package/lib/commands/force/package/beta/uninstall.js.map +1 -1
- package/lib/commands/force/package/beta/update.js +7 -5
- package/lib/commands/force/package/beta/update.js.map +1 -1
- package/lib/commands/force/package/beta/version/create/list.js +1 -1
- package/lib/commands/force/package/beta/version/create/list.js.map +1 -1
- package/lib/commands/force/package/beta/version/create.js +2 -13
- package/lib/commands/force/package/beta/version/create.js.map +1 -1
- package/lib/commands/force/package/beta/version/list.js +1 -1
- package/lib/commands/force/package/beta/version/list.js.map +1 -1
- package/lib/commands/force/package/beta/version/promote.js +1 -1
- package/lib/commands/force/package/beta/version/promote.js.map +1 -1
- package/messages/package_install.md +13 -1
- package/messages/package_uninstall.md +4 -0
- package/messages/package_version_create.md +9 -1
- package/messages/utils.md +19 -0
- package/oclif.manifest.json +1 -1
- package/package.json +12 -12
package/package.json
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-packaging",
|
|
3
3
|
"description": "SFDX plugin that support Salesforce Packaging Platform",
|
|
4
|
-
"version": "1.9.
|
|
4
|
+
"version": "1.9.6",
|
|
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": "^1.
|
|
10
|
-
"@salesforce/command": "^5.2.
|
|
11
|
-
"@salesforce/core": "^3.
|
|
12
|
-
"@salesforce/kit": "^1.
|
|
13
|
-
"@salesforce/packaging": "0.
|
|
14
|
-
"
|
|
15
|
-
"
|
|
9
|
+
"@oclif/core": "^1.18.0",
|
|
10
|
+
"@salesforce/command": "^5.2.13",
|
|
11
|
+
"@salesforce/core": "^3.31.15",
|
|
12
|
+
"@salesforce/kit": "^1.7.0",
|
|
13
|
+
"@salesforce/packaging": "^0.1.13",
|
|
14
|
+
"chalk": "^4.1.2",
|
|
15
|
+
"tslib": "^2"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@oclif/plugin-command-snapshot": "^3.1.3",
|
|
19
19
|
"@oclif/plugin-version": "^1.1.2",
|
|
20
|
-
"@salesforce/cli-plugins-testkit": "^2.
|
|
20
|
+
"@salesforce/cli-plugins-testkit": "^3.2.2",
|
|
21
21
|
"@salesforce/dev-config": "^2.1.3",
|
|
22
22
|
"@salesforce/dev-scripts": "^1.0.4",
|
|
23
|
-
"@salesforce/plugin-auth": "^2.2.
|
|
23
|
+
"@salesforce/plugin-auth": "^2.2.16",
|
|
24
24
|
"@salesforce/plugin-command-reference": "^1.3.20",
|
|
25
25
|
"@salesforce/plugin-config": "^1.4.12",
|
|
26
26
|
"@salesforce/prettier-config": "^0.0.2",
|
|
@@ -189,7 +189,7 @@
|
|
|
189
189
|
"access": "public"
|
|
190
190
|
},
|
|
191
191
|
"sfdx": {
|
|
192
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-packaging/1.9.
|
|
193
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-packaging/1.9.
|
|
192
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-packaging/1.9.6.crt",
|
|
193
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-packaging/1.9.6.sig"
|
|
194
194
|
}
|
|
195
195
|
}
|