@salesforce/plugin-deploy-retrieve 1.8.0 → 1.8.1

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.
@@ -14,13 +14,13 @@ To deploy multiple metadata components, either set multiple --metadata <name> fl
14
14
 
15
15
  # examples
16
16
 
17
- - Deploy local changes not in the org:
17
+ - Deploy local changes not in the org; uses your default org:
18
18
 
19
19
  <%= config.bin %> <%= command.id %>
20
20
 
21
- - Deploy the source files in a directory:
21
+ - Deploy the source files in a directory to an org with alias "my-scratch":
22
22
 
23
- <%= config.bin %> <%= command.id %> --source-dir path/to/source
23
+ <%= config.bin %> <%= command.id %> --source-dir path/to/source --target-org my-scratch
24
24
 
25
25
  - Deploy a specific Apex class and the objects whose source is in a directory (both examples are equivalent):
26
26
 
@@ -191,7 +191,7 @@ You must specify tests using the --tests flag if the --test-level flag is set to
191
191
 
192
192
  # error.ClientTimeout
193
193
 
194
- The client has timed out. Use sf deploy metadata resume to resume watching this deploy.
194
+ The command has timed out, although the deployment is still running. Use "sf deploy metadata resume" to resume watching the deployment.
195
195
 
196
196
  # error.Conflicts
197
197
 
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.8.0",
2
+ "version": "1.8.1",
3
3
  "commands": {
4
4
  "deploy": {
5
5
  "id": "deploy",
@@ -35,8 +35,8 @@
35
35
  "state": "beta",
36
36
  "aliases": [],
37
37
  "examples": [
38
- "Deploy local changes not in the org:\n<%= config.bin %> <%= command.id %>",
39
- "Deploy the source files in a directory:\n<%= config.bin %> <%= command.id %> --source-dir path/to/source",
38
+ "Deploy local changes not in the org; uses your default org:\n<%= config.bin %> <%= command.id %>",
39
+ "Deploy the source files in a directory to an org with alias \"my-scratch\":\n<%= config.bin %> <%= command.id %> --source-dir path/to/source --target-org my-scratch",
40
40
  "Deploy a specific Apex class and the objects whose source is in a directory (both examples are equivalent):\n<%= config.bin %> <%= command.id %> --source-dir path/to/apex/classes/MyClass.cls path/to/source/objects\n<%= config.bin %> <%= command.id %> --source-dir path/to/apex/classes/MyClass.cls --source-dir path/to/source/objects",
41
41
  "Deploy all Apex classes:\n<%= config.bin %> <%= command.id %> --metadata ApexClass",
42
42
  "Deploy a specific Apex class:\n<%= config.bin %> <%= command.id %> --metadata ApexClass:MyApexClass",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@salesforce/plugin-deploy-retrieve",
3
3
  "description": "deploy and retrieve commands for sf",
4
- "version": "1.8.0",
4
+ "version": "1.8.1",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/forcedotcom/cli/issues",
7
7
  "dependencies": {
@@ -151,7 +151,7 @@
151
151
  },
152
152
  "main": "lib/index.js",
153
153
  "sfdx": {
154
- "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-deploy-retrieve/1.8.0.crt",
155
- "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-deploy-retrieve/1.8.0.sig"
154
+ "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-deploy-retrieve/1.8.1.crt",
155
+ "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-deploy-retrieve/1.8.1.sig"
156
156
  }
157
157
  }