@salesforce/plugin-org 2.3.1 → 2.3.3

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.
Files changed (2) hide show
  1. package/oclif.manifest.json +1 -1
  2. package/package.json +17 -18
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "2.3.1",
2
+ "version": "2.3.3",
3
3
  "commands": {
4
4
  "org:display": {
5
5
  "id": "org:display",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@salesforce/plugin-org",
3
3
  "description": "Commands to interact with Salesforce orgs",
4
- "version": "2.3.1",
4
+ "version": "2.3.3",
5
5
  "author": "Salesforce",
6
6
  "main": "lib/index.js",
7
7
  "bugs": "https://github.com/forcedotcom/cli/issues",
@@ -14,10 +14,10 @@
14
14
  "tslib": "^2"
15
15
  },
16
16
  "devDependencies": {
17
- "@oclif/plugin-command-snapshot": "^3.3.0",
17
+ "@oclif/plugin-command-snapshot": "^3.3.3",
18
18
  "@salesforce/cli-plugins-testkit": "^3.2.18",
19
19
  "@salesforce/dev-config": "^3.1.0",
20
- "@salesforce/dev-scripts": "^4.0.0-beta.9",
20
+ "@salesforce/dev-scripts": "^3.1.1",
21
21
  "@salesforce/plugin-command-reference": "^2.2.9",
22
22
  "@salesforce/prettier-config": "^0.0.2",
23
23
  "@salesforce/ts-sinon": "1.4.4",
@@ -34,7 +34,7 @@
34
34
  "eslint-config-salesforce-license": "^0.1.6",
35
35
  "eslint-config-salesforce-typescript": "^1.1.1",
36
36
  "eslint-plugin-header": "^3.0.0",
37
- "eslint-plugin-import": "2.27.4",
37
+ "eslint-plugin-import": "2.27.5",
38
38
  "eslint-plugin-jsdoc": "^39.6.7",
39
39
  "eslint-plugin-sf-plugin": "^1.7.0",
40
40
  "husky": "^7.0.4",
@@ -78,17 +78,16 @@
78
78
  ],
79
79
  "topics": {
80
80
  "org": {
81
- "description": "manage your orgs",
82
- "longDescription": "Use the org commands to manage the orgs you use with Salesforce CLI. Create and delete scratch orgs, list your created and authorized orgs, and open orgs in your browser.",
81
+ "description": "Manage your sandbox and scratch orgs.",
83
82
  "subtopics": {
84
83
  "create": {
85
- "description": "create scratch orgs, sandboxes, org shapes, and org snapshots"
84
+ "description": "Create scratch orgs, sandboxes, org shapes, and org snapshots."
86
85
  },
87
86
  "resume": {
88
- "description": "resume an org creation that was started asynchronously, timed out, or was interrupted"
87
+ "description": "Resume an org creation that was started asynchronously, timed out, or was interrupted."
89
88
  },
90
89
  "delete": {
91
- "description": "delete scratch orgs, sandboxes, org shapes, and org snapshots"
90
+ "description": "Delete scratch orgs, sandboxes, org shapes, and org snapshots."
92
91
  }
93
92
  }
94
93
  },
@@ -96,8 +95,7 @@
96
95
  "external": true,
97
96
  "subtopics": {
98
97
  "org": {
99
- "description": "manage your orgs",
100
- "longDescription": "Use the org commands to manage the orgs you use with Salesforce CLI. Create and delete scratch orgs, list your created and authorized orgs, and open orgs in your browser."
98
+ "description": "Manage your sandbox and scratch orgs."
101
99
  }
102
100
  }
103
101
  }
@@ -105,18 +103,19 @@
105
103
  },
106
104
  "repository": "salesforcecli/plugin-org",
107
105
  "scripts": {
108
- "build": "wireit",
106
+ "build": "sf-build",
109
107
  "clean": "sf-clean",
110
108
  "clean-all": "sf-clean all",
111
109
  "clean:lib": "shx rm -rf lib && shx rm -rf coverage && shx rm -rf .nyc_output && shx rm -f oclif.manifest.json",
112
- "compile": "wireit",
110
+ "compile": "sf-compile",
113
111
  "docs": "sf-docs",
114
- "format": "wireit",
115
- "lint": "wireit",
112
+ "format": "sf-format",
113
+ "lint": "sf-lint",
116
114
  "postpack": "shx rm -f oclif.manifest.json",
117
115
  "prepack": "sf-prepack",
118
116
  "prepare": "sf-install",
119
- "test": "wireit",
117
+ "pretest": "sf-compile-test",
118
+ "test": "sf-test",
120
119
  "test:command-reference": "wireit",
121
120
  "test:compile": "wireit",
122
121
  "test:deprecation-policy": "wireit",
@@ -224,7 +223,7 @@
224
223
  }
225
224
  },
226
225
  "sfdx": {
227
- "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-org/2.3.1.crt",
228
- "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-org/2.3.1.sig"
226
+ "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-org/2.3.3.crt",
227
+ "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-org/2.3.3.sig"
229
228
  }
230
229
  }