@adobe/aio-cli-plugin-app 9.1.0 → 9.2.0-pre.2022-09-27.805ee90c

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.
@@ -10,7 +10,6 @@ governing permissions and limitations under the License.
10
10
  */
11
11
 
12
12
  // defaults & constants
13
- const generators = require('@adobe/generator-aio-app')
14
13
 
15
14
  module.exports = {
16
15
  defaultAppHostname: 'adobeio-static.net',
@@ -35,44 +34,5 @@ module.exports = {
35
34
  LEGACY_RUNTIME_MANIFEST: 'manifest.yml',
36
35
  INCLUDE_DIRECTIVE: '$include',
37
36
  APPLICATION_CONFIG_KEY: 'application',
38
- EXTENSIONS_CONFIG_KEY: 'extensions',
39
-
40
- EXTENSION_POINT_LIST: {
41
- 'dx/excshell/1': {
42
- operations: ['view']
43
- },
44
- 'dx/asset-compute/worker/1': {
45
- operations: ['workerProcess']
46
- }
47
- },
48
-
49
- implPromptChoices: [
50
- // we abuse the extension command to also let users add a standalone app
51
- {
52
- name: 'Standalone Application',
53
- value: {
54
- name: 'application',
55
- generator: generators.application,
56
- requiredServices: [] // TODO required services should be filled based on selected actions
57
- }
58
- },
59
- // extensions
60
- // TODO this list should not be hardcoded but fetched from xt reg
61
- {
62
- name: 'DX Experience Cloud SPA v1',
63
- value: {
64
- name: 'dx/excshell/1',
65
- generator: generators.extensions['dx/excshell/1'],
66
- requiredServices: []
67
- }
68
- },
69
- {
70
- name: 'DX Asset Compute Worker v1',
71
- value: {
72
- name: 'dx/asset-compute/worker/1',
73
- generator: generators.extensions['dx/asset-compute/worker/1'],
74
- requiredServices: ['AssetComputeSDK']
75
- }
76
- }
77
- ]
37
+ EXTENSIONS_CONFIG_KEY: 'extensions'
78
38
  }