@salesforce/plugin-marketplace 1.0.23-qa.0 → 1.0.23-qa.2

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.
@@ -0,0 +1,5 @@
1
+ import PluginsDiscover from './commands/plugins/discover.js';
2
+ declare const _default: {
3
+ 'plugins:discover': typeof PluginsDiscover;
4
+ };
5
+ export default _default;
@@ -0,0 +1,11 @@
1
+ /*
2
+ * Copyright (c) 2023, salesforce.com, inc.
3
+ * All rights reserved.
4
+ * Licensed under the BSD 3-Clause license.
5
+ * For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
6
+ */
7
+ import PluginsDiscover from './commands/plugins/discover.js';
8
+ export default {
9
+ 'plugins:discover': PluginsDiscover,
10
+ };
11
+ //# sourceMappingURL=commands.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"commands.js","sourceRoot":"","sources":["../src/commands.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,eAAe,MAAM,gCAAgC,CAAC;AAE7D,eAAe;IACb,kBAAkB,EAAE,eAAe;CACpC,CAAC"}
@@ -24,13 +24,6 @@
24
24
  "strict": true,
25
25
  "summary": "See a list of 3rd-party sf plugins you can install.",
26
26
  "enableJsonFlag": true,
27
- "isESM": true,
28
- "relativePath": [
29
- "lib",
30
- "commands",
31
- "plugins",
32
- "discover.js"
33
- ],
34
27
  "aliasPermutations": [],
35
28
  "permutations": [
36
29
  "plugins:discover",
@@ -38,5 +31,5 @@
38
31
  ]
39
32
  }
40
33
  },
41
- "version": "1.0.23-qa.0"
34
+ "version": "1.0.23-qa.2"
42
35
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@salesforce/plugin-marketplace",
3
3
  "description": "Find sf plugins",
4
- "version": "1.0.23-qa.0",
4
+ "version": "1.0.23-qa.2",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/forcedotcom/cli/issues",
7
7
  "dependencies": {
@@ -48,7 +48,10 @@
48
48
  ],
49
49
  "license": "BSD-3-Clause",
50
50
  "oclif": {
51
- "commands": "./lib/commands",
51
+ "commands": {
52
+ "strategy": "explicit",
53
+ "target": "./lib/commands.js"
54
+ },
52
55
  "bin": "sf",
53
56
  "topicSeparator": " ",
54
57
  "devPlugins": [
@@ -204,7 +207,7 @@
204
207
  "exports": "./lib/index.js",
205
208
  "type": "module",
206
209
  "sfdx": {
207
- "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-marketplace/1.0.23-qa.0.crt",
208
- "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-marketplace/1.0.23-qa.0.sig"
210
+ "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-marketplace/1.0.23-qa.2.crt",
211
+ "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-marketplace/1.0.23-qa.2.sig"
209
212
  }
210
213
  }