@shell-shock/plugin-completions 0.2.24 → 0.3.0

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 (117) hide show
  1. package/README.md +1 -1
  2. package/dist/components/bash-config-command.cjs +132 -0
  3. package/dist/components/bash-config-command.d.cts +10 -0
  4. package/dist/components/bash-config-command.d.cts.map +1 -0
  5. package/dist/components/bash-config-command.d.mts +10 -0
  6. package/dist/components/bash-config-command.d.mts.map +1 -0
  7. package/dist/components/bash-config-command.mjs +132 -0
  8. package/dist/components/bash-config-command.mjs.map +1 -0
  9. package/dist/components/bash-script-command.cjs +106 -0
  10. package/dist/components/bash-script-command.d.cts +10 -0
  11. package/dist/components/bash-script-command.d.cts.map +1 -0
  12. package/dist/components/bash-script-command.d.mts +10 -0
  13. package/dist/components/bash-script-command.d.mts.map +1 -0
  14. package/dist/components/bash-script-command.mjs +106 -0
  15. package/dist/components/bash-script-command.mjs.map +1 -0
  16. package/dist/components/bash-shared.cjs +172 -0
  17. package/dist/components/bash-shared.d.cts +10 -0
  18. package/dist/components/bash-shared.d.cts.map +1 -0
  19. package/dist/components/bash-shared.d.mts +10 -0
  20. package/dist/components/bash-shared.d.mts.map +1 -0
  21. package/dist/components/bash-shared.mjs +172 -0
  22. package/dist/components/bash-shared.mjs.map +1 -0
  23. package/dist/components/fish-config-command.cjs +132 -0
  24. package/dist/components/fish-config-command.d.cts +10 -0
  25. package/dist/components/fish-config-command.d.cts.map +1 -0
  26. package/dist/components/fish-config-command.d.mts +10 -0
  27. package/dist/components/fish-config-command.d.mts.map +1 -0
  28. package/dist/components/fish-config-command.mjs +132 -0
  29. package/dist/components/fish-config-command.mjs.map +1 -0
  30. package/dist/components/fish-script-command.cjs +106 -0
  31. package/dist/components/fish-script-command.d.cts +10 -0
  32. package/dist/components/fish-script-command.d.cts.map +1 -0
  33. package/dist/components/fish-script-command.d.mts +10 -0
  34. package/dist/components/fish-script-command.d.mts.map +1 -0
  35. package/dist/components/fish-script-command.mjs +106 -0
  36. package/dist/components/fish-script-command.mjs.map +1 -0
  37. package/dist/components/{fish-command.cjs → fish-shared.cjs} +40 -144
  38. package/dist/components/fish-shared.d.cts +10 -0
  39. package/dist/components/fish-shared.d.cts.map +1 -0
  40. package/dist/components/fish-shared.d.mts +10 -0
  41. package/dist/components/fish-shared.d.mts.map +1 -0
  42. package/dist/components/{fish-command.mjs → fish-shared.mjs} +45 -149
  43. package/dist/components/fish-shared.mjs.map +1 -0
  44. package/dist/components/index.cjs +24 -8
  45. package/dist/components/index.d.cts +13 -5
  46. package/dist/components/index.d.mts +13 -5
  47. package/dist/components/index.mjs +13 -5
  48. package/dist/components/powershell-config-command.cjs +128 -0
  49. package/dist/components/powershell-config-command.d.cts +7 -0
  50. package/dist/components/powershell-config-command.d.cts.map +1 -0
  51. package/dist/components/powershell-config-command.d.mts +7 -0
  52. package/dist/components/powershell-config-command.d.mts.map +1 -0
  53. package/dist/components/powershell-config-command.mjs +128 -0
  54. package/dist/components/powershell-config-command.mjs.map +1 -0
  55. package/dist/components/powershell-script-command.cjs +106 -0
  56. package/dist/components/powershell-script-command.d.cts +10 -0
  57. package/dist/components/powershell-script-command.d.cts.map +1 -0
  58. package/dist/components/powershell-script-command.d.mts +10 -0
  59. package/dist/components/powershell-script-command.d.mts.map +1 -0
  60. package/dist/components/powershell-script-command.mjs +106 -0
  61. package/dist/components/powershell-script-command.mjs.map +1 -0
  62. package/dist/components/{powershell-command.cjs → powershell-shared.cjs} +40 -146
  63. package/dist/components/powershell-shared.d.cts +10 -0
  64. package/dist/components/powershell-shared.d.cts.map +1 -0
  65. package/dist/components/powershell-shared.d.mts +10 -0
  66. package/dist/components/powershell-shared.d.mts.map +1 -0
  67. package/dist/components/{powershell-command.mjs → powershell-shared.mjs} +44 -150
  68. package/dist/components/powershell-shared.mjs.map +1 -0
  69. package/dist/components/zsh-config-command.cjs +132 -0
  70. package/dist/components/zsh-config-command.d.cts +10 -0
  71. package/dist/components/zsh-config-command.d.cts.map +1 -0
  72. package/dist/components/zsh-config-command.d.mts +10 -0
  73. package/dist/components/zsh-config-command.d.mts.map +1 -0
  74. package/dist/components/zsh-config-command.mjs +132 -0
  75. package/dist/components/zsh-config-command.mjs.map +1 -0
  76. package/dist/components/zsh-script-command.cjs +111 -0
  77. package/dist/components/zsh-script-command.d.cts +10 -0
  78. package/dist/components/zsh-script-command.d.cts.map +1 -0
  79. package/dist/components/zsh-script-command.d.mts +10 -0
  80. package/dist/components/zsh-script-command.d.mts.map +1 -0
  81. package/dist/components/zsh-script-command.mjs +111 -0
  82. package/dist/components/zsh-script-command.mjs.map +1 -0
  83. package/dist/components/{zsh-command.cjs → zsh-shared.cjs} +41 -147
  84. package/dist/components/zsh-shared.d.cts +10 -0
  85. package/dist/components/zsh-shared.d.cts.map +1 -0
  86. package/dist/components/zsh-shared.d.mts +10 -0
  87. package/dist/components/zsh-shared.d.mts.map +1 -0
  88. package/dist/components/{zsh-command.mjs → zsh-shared.mjs} +45 -151
  89. package/dist/components/zsh-shared.mjs.map +1 -0
  90. package/dist/index.cjs +232 -68
  91. package/dist/index.d.cts.map +1 -1
  92. package/dist/index.d.mts.map +1 -1
  93. package/dist/index.mjs +232 -68
  94. package/dist/index.mjs.map +1 -1
  95. package/package.json +148 -36
  96. package/dist/components/bash-command.cjs +0 -276
  97. package/dist/components/bash-command.d.cts +0 -10
  98. package/dist/components/bash-command.d.cts.map +0 -1
  99. package/dist/components/bash-command.d.mts +0 -10
  100. package/dist/components/bash-command.d.mts.map +0 -1
  101. package/dist/components/bash-command.mjs +0 -276
  102. package/dist/components/bash-command.mjs.map +0 -1
  103. package/dist/components/fish-command.d.cts +0 -10
  104. package/dist/components/fish-command.d.cts.map +0 -1
  105. package/dist/components/fish-command.d.mts +0 -10
  106. package/dist/components/fish-command.d.mts.map +0 -1
  107. package/dist/components/fish-command.mjs.map +0 -1
  108. package/dist/components/powershell-command.d.cts +0 -10
  109. package/dist/components/powershell-command.d.cts.map +0 -1
  110. package/dist/components/powershell-command.d.mts +0 -10
  111. package/dist/components/powershell-command.d.mts.map +0 -1
  112. package/dist/components/powershell-command.mjs.map +0 -1
  113. package/dist/components/zsh-command.d.cts +0 -10
  114. package/dist/components/zsh-command.d.cts.map +0 -1
  115. package/dist/components/zsh-command.d.mts +0 -10
  116. package/dist/components/zsh-command.d.mts.map +0 -1
  117. package/dist/components/zsh-command.mjs.map +0 -1
package/dist/index.cjs CHANGED
@@ -1,8 +1,16 @@
1
1
  Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
2
- const require_components_bash_command = require('./components/bash-command.cjs');
3
- const require_components_fish_command = require('./components/fish-command.cjs');
4
- const require_components_powershell_command = require('./components/powershell-command.cjs');
5
- const require_components_zsh_command = require('./components/zsh-command.cjs');
2
+ const require_components_bash_config_command = require('./components/bash-config-command.cjs');
3
+ const require_components_bash_script_command = require('./components/bash-script-command.cjs');
4
+ const require_components_bash_shared = require('./components/bash-shared.cjs');
5
+ const require_components_fish_config_command = require('./components/fish-config-command.cjs');
6
+ const require_components_fish_script_command = require('./components/fish-script-command.cjs');
7
+ const require_components_fish_shared = require('./components/fish-shared.cjs');
8
+ const require_components_powershell_config_command = require('./components/powershell-config-command.cjs');
9
+ const require_components_powershell_script_command = require('./components/powershell-script-command.cjs');
10
+ const require_components_powershell_shared = require('./components/powershell-shared.cjs');
11
+ const require_components_zsh_config_command = require('./components/zsh-config-command.cjs');
12
+ const require_components_zsh_script_command = require('./components/zsh-script-command.cjs');
13
+ const require_components_zsh_shared = require('./components/zsh-shared.cjs');
6
14
  require('./components/index.cjs');
7
15
  const require_types_shell_type = require('./types/shell-type.cjs');
8
16
  let _alloy_js_core_jsx_runtime = require("@alloy-js/core/jsx-runtime");
@@ -44,79 +52,235 @@ const plugin = (options = {}) => {
44
52
  isVirtual: true
45
53
  });
46
54
  if (this.config.completions.shells.includes("bash")) if (this.inputs.some((input) => input.id === "completions-bash")) this.info("The `completions-bash` command already exists in the commands list. If you would like the completions-bash command to be managed by the `@shell-shock/plugin-completions` package, please remove or rename the command.");
47
- else this.inputs.push({
48
- id: "completions-bash",
49
- name: "bash",
50
- description: `Generate a Bash completion script for the ${(0, _shell_shock_core_plugin_utils.getAppTitle)(this, true)} command-line interface.`,
51
- alias: [],
52
- path: "completions/bash",
53
- segments: ["completions", "bash"],
54
- title: "CLI Completions - Bash Shell",
55
- tags: ["Utility"],
56
- entry: {
57
- file: (0, _stryke_path_join.joinPaths)(this.entryPath, "completions", "bash", "index.ts"),
58
- input: { file: (0, _stryke_path_join.joinPaths)(this.entryPath, "completions", "bash", "command.ts") }
59
- },
60
- isVirtual: false
61
- });
55
+ else {
56
+ this.inputs.push({
57
+ id: "completions-bash",
58
+ name: "bash",
59
+ description: `Commands to setup bash completions for the ${(0, _shell_shock_core_plugin_utils.getAppTitle)(this, true)} command-line interface.`,
60
+ alias: [],
61
+ path: "completions/bash",
62
+ segments: ["completions", "bash"],
63
+ title: "Completions - Bash",
64
+ tags: ["Utility"],
65
+ entry: { file: (0, _stryke_path_join.joinPaths)(this.entryPath, "completions", "bash", "index.ts") },
66
+ isVirtual: true
67
+ });
68
+ this.inputs.push({
69
+ id: "completions-bash-script",
70
+ name: "script",
71
+ description: `Generate a bash completion script for the ${(0, _shell_shock_core_plugin_utils.getAppTitle)(this, true)} command-line interface.`,
72
+ alias: [],
73
+ path: "completions/bash/script",
74
+ segments: [
75
+ "completions",
76
+ "bash",
77
+ "script"
78
+ ],
79
+ title: "Completions - Bash Script",
80
+ tags: ["Utility"],
81
+ entry: {
82
+ file: (0, _stryke_path_join.joinPaths)(this.entryPath, "completions", "bash", "script", "index.ts"),
83
+ input: { file: (0, _stryke_path_join.joinPaths)(this.entryPath, "completions", "bash", "script", "command.ts") }
84
+ },
85
+ isVirtual: false
86
+ });
87
+ this.inputs.push({
88
+ id: "completions-bash-config",
89
+ name: "config",
90
+ description: `Update the current system's bash shell configuration to include completions for the ${(0, _shell_shock_core_plugin_utils.getAppTitle)(this, true)} command-line interface.`,
91
+ alias: [],
92
+ path: "completions/bash/config",
93
+ segments: [
94
+ "completions",
95
+ "bash",
96
+ "config"
97
+ ],
98
+ title: "Completions - Bash Configuration",
99
+ tags: ["Utility"],
100
+ entry: {
101
+ file: (0, _stryke_path_join.joinPaths)(this.entryPath, "completions", "bash", "config", "index.ts"),
102
+ input: { file: (0, _stryke_path_join.joinPaths)(this.entryPath, "completions", "bash", "config", "command.ts") }
103
+ },
104
+ isVirtual: false
105
+ });
106
+ }
62
107
  if (this.config.completions.shells.includes("zsh")) if (this.inputs.some((input) => input.id === "completions-zsh")) this.info("The `completions-zsh` command already exists in the commands list. If you would like the completions-zsh command to be managed by the `@shell-shock/plugin-completions` package, please remove or rename the command.");
63
- else this.inputs.push({
64
- id: "completions-zsh",
65
- name: "zsh",
66
- description: `Generate a Zsh completion script for the ${(0, _shell_shock_core_plugin_utils.getAppTitle)(this, true)} command-line interface.`,
67
- alias: [],
68
- path: "completions/zsh",
69
- segments: ["completions", "zsh"],
70
- title: "CLI Completions - Zsh Shell",
71
- tags: ["Utility"],
72
- entry: {
73
- file: (0, _stryke_path_join.joinPaths)(this.entryPath, "completions", "zsh", "index.ts"),
74
- input: { file: (0, _stryke_path_join.joinPaths)(this.entryPath, "completions", "zsh", "command.ts") }
75
- },
76
- isVirtual: false
77
- });
108
+ else {
109
+ this.inputs.push({
110
+ id: "completions-zsh",
111
+ name: "zsh",
112
+ description: `Commands to setup Zsh completions for the ${(0, _shell_shock_core_plugin_utils.getAppTitle)(this, true)} command-line interface.`,
113
+ alias: [],
114
+ path: "completions/zsh",
115
+ segments: ["completions", "zsh"],
116
+ title: "Completions - Zsh",
117
+ tags: ["Utility"],
118
+ entry: { file: (0, _stryke_path_join.joinPaths)(this.entryPath, "completions", "zsh", "index.ts") },
119
+ isVirtual: true
120
+ });
121
+ this.inputs.push({
122
+ id: "completions-zsh-script",
123
+ name: "script",
124
+ description: `Generate a Zsh completion script for the ${(0, _shell_shock_core_plugin_utils.getAppTitle)(this, true)} command-line interface.`,
125
+ alias: [],
126
+ path: "completions/zsh/script",
127
+ segments: [
128
+ "completions",
129
+ "zsh",
130
+ "script"
131
+ ],
132
+ title: "Completions - Zsh Script",
133
+ tags: ["Utility"],
134
+ entry: {
135
+ file: (0, _stryke_path_join.joinPaths)(this.entryPath, "completions", "zsh", "script", "index.ts"),
136
+ input: { file: (0, _stryke_path_join.joinPaths)(this.entryPath, "completions", "zsh", "script", "command.ts") }
137
+ },
138
+ isVirtual: false
139
+ });
140
+ this.inputs.push({
141
+ id: "completions-zsh-config",
142
+ name: "config",
143
+ description: `Update the current system's Zsh shell configuration to include completions for the ${(0, _shell_shock_core_plugin_utils.getAppTitle)(this, true)} command-line interface.`,
144
+ alias: [],
145
+ path: "completions/zsh/config",
146
+ segments: [
147
+ "completions",
148
+ "zsh",
149
+ "config"
150
+ ],
151
+ title: "Completions - Zsh Configuration",
152
+ tags: ["Utility"],
153
+ entry: {
154
+ file: (0, _stryke_path_join.joinPaths)(this.entryPath, "completions", "zsh", "config", "index.ts"),
155
+ input: { file: (0, _stryke_path_join.joinPaths)(this.entryPath, "completions", "zsh", "config", "command.ts") }
156
+ },
157
+ isVirtual: false
158
+ });
159
+ }
78
160
  if (this.config.completions.shells.includes("powershell")) if (this.inputs.some((input) => input.id === "completions-powershell")) this.info("The `completions-powershell` command already exists in the commands list. If you would like the completions-powershell command to be managed by the `@shell-shock/plugin-completions` package, please remove or rename the command.");
79
- else this.inputs.push({
80
- id: "completions-powershell",
81
- name: "powershell",
82
- description: `Generate a PowerShell completion script for the ${(0, _shell_shock_core_plugin_utils.getAppTitle)(this, true)} command-line interface.`,
83
- alias: [],
84
- path: "completions/powershell",
85
- segments: ["completions", "powershell"],
86
- title: "CLI Completions - PowerShell",
87
- tags: ["Utility"],
88
- entry: {
89
- file: (0, _stryke_path_join.joinPaths)(this.entryPath, "completions", "powershell", "index.ts"),
90
- input: { file: (0, _stryke_path_join.joinPaths)(this.entryPath, "completions", "powershell", "command.ts") }
91
- },
92
- isVirtual: false
93
- });
161
+ else {
162
+ this.inputs.push({
163
+ id: "completions-powershell",
164
+ name: "powershell",
165
+ description: `Commands to setup PowerShell completions for the ${(0, _shell_shock_core_plugin_utils.getAppTitle)(this, true)} command-line interface.`,
166
+ alias: [],
167
+ path: "completions/powershell",
168
+ segments: ["completions", "powershell"],
169
+ title: "Completions - PowerShell",
170
+ tags: ["Utility"],
171
+ entry: { file: (0, _stryke_path_join.joinPaths)(this.entryPath, "completions", "powershell", "index.ts") },
172
+ isVirtual: true
173
+ });
174
+ this.inputs.push({
175
+ id: "completions-powershell-script",
176
+ name: "script",
177
+ description: `Generate a PowerShell completion script for the ${(0, _shell_shock_core_plugin_utils.getAppTitle)(this, true)} command-line interface.`,
178
+ alias: [],
179
+ path: "completions/powershell/script",
180
+ segments: [
181
+ "completions",
182
+ "powershell",
183
+ "script"
184
+ ],
185
+ title: "Completions - PowerShell Script",
186
+ tags: ["Utility"],
187
+ entry: {
188
+ file: (0, _stryke_path_join.joinPaths)(this.entryPath, "completions", "powershell", "script", "index.ts"),
189
+ input: { file: (0, _stryke_path_join.joinPaths)(this.entryPath, "completions", "powershell", "script", "command.ts") }
190
+ },
191
+ isVirtual: false
192
+ });
193
+ this.inputs.push({
194
+ id: "completions-powershell-config",
195
+ name: "config",
196
+ description: `Update the current system's PowerShell configuration to include completions for the ${(0, _shell_shock_core_plugin_utils.getAppTitle)(this, true)} command-line interface.`,
197
+ alias: [],
198
+ path: "completions/powershell/config",
199
+ segments: [
200
+ "completions",
201
+ "powershell",
202
+ "config"
203
+ ],
204
+ title: "Completions - PowerShell Configuration",
205
+ tags: ["Utility"],
206
+ entry: {
207
+ file: (0, _stryke_path_join.joinPaths)(this.entryPath, "completions", "powershell", "config", "index.ts"),
208
+ input: { file: (0, _stryke_path_join.joinPaths)(this.entryPath, "completions", "powershell", "config", "command.ts") }
209
+ },
210
+ isVirtual: false
211
+ });
212
+ }
94
213
  if (this.config.completions.shells.includes("fish")) if (this.inputs.some((input) => input.id === "completions-fish")) this.info("The `completions-fish` command already exists in the commands list. If you would like the completions-fish command to be managed by the `@shell-shock/plugin-completions` package, please remove or rename the command.");
95
- else this.inputs.push({
96
- id: "completions-fish",
97
- name: "fish",
98
- description: `Generate a Fish completion script for the ${(0, _shell_shock_core_plugin_utils.getAppTitle)(this, true)} command-line interface.`,
99
- alias: [],
100
- path: "completions/fish",
101
- segments: ["completions", "fish"],
102
- title: "CLI Completions - Fish Shell",
103
- tags: ["Utility"],
104
- entry: {
105
- file: (0, _stryke_path_join.joinPaths)(this.entryPath, "completions", "fish", "index.ts"),
106
- input: { file: (0, _stryke_path_join.joinPaths)(this.entryPath, "completions", "fish", "command.ts") }
107
- },
108
- isVirtual: false
109
- });
214
+ else {
215
+ this.inputs.push({
216
+ id: "completions-fish",
217
+ name: "fish",
218
+ description: `Commands to setup Fish completions for the ${(0, _shell_shock_core_plugin_utils.getAppTitle)(this, true)} command-line interface.`,
219
+ alias: [],
220
+ path: "completions/fish",
221
+ segments: ["completions", "fish"],
222
+ title: "Completions - Fish",
223
+ tags: ["Utility"],
224
+ entry: { file: (0, _stryke_path_join.joinPaths)(this.entryPath, "completions", "fish", "index.ts") },
225
+ isVirtual: true
226
+ });
227
+ this.inputs.push({
228
+ id: "completions-fish-script",
229
+ name: "script",
230
+ description: `Generate a Fish completion script for the ${(0, _shell_shock_core_plugin_utils.getAppTitle)(this, true)} command-line interface.`,
231
+ alias: [],
232
+ path: "completions/fish/script",
233
+ segments: [
234
+ "completions",
235
+ "fish",
236
+ "script"
237
+ ],
238
+ title: "Completions - Fish Script",
239
+ tags: ["Utility"],
240
+ entry: {
241
+ file: (0, _stryke_path_join.joinPaths)(this.entryPath, "completions", "fish", "script", "index.ts"),
242
+ input: { file: (0, _stryke_path_join.joinPaths)(this.entryPath, "completions", "fish", "script", "command.ts") }
243
+ },
244
+ isVirtual: false
245
+ });
246
+ this.inputs.push({
247
+ id: "completions-fish-config",
248
+ name: "config",
249
+ description: `Update the current system's Fish shell configuration to include completions for the ${(0, _shell_shock_core_plugin_utils.getAppTitle)(this, true)} command-line interface.`,
250
+ alias: [],
251
+ path: "completions/fish/config",
252
+ segments: [
253
+ "completions",
254
+ "fish",
255
+ "config"
256
+ ],
257
+ title: "Completions - Fish Configuration",
258
+ tags: ["Utility"],
259
+ entry: {
260
+ file: (0, _stryke_path_join.joinPaths)(this.entryPath, "completions", "fish", "config", "index.ts"),
261
+ input: { file: (0, _stryke_path_join.joinPaths)(this.entryPath, "completions", "fish", "config", "command.ts") }
262
+ },
263
+ isVirtual: false
264
+ });
265
+ }
110
266
  },
111
267
  prepare: {
112
268
  order: "pre",
113
269
  async handler() {
114
270
  this.debug("Rendering command handling modules for the Shell Shock `completions` plugin.");
115
271
  return (0, _powerlines_plugin_alloy_render.render)(this, [
116
- (0, _alloy_js_core_jsx_runtime.createComponent)(require_components_bash_command.BashCompletionsCommand, {}),
117
- (0, _alloy_js_core_jsx_runtime.createComponent)(require_components_zsh_command.ZshCompletionsCommand, {}),
118
- (0, _alloy_js_core_jsx_runtime.createComponent)(require_components_powershell_command.PowerShellCompletionsCommand, {}),
119
- (0, _alloy_js_core_jsx_runtime.createComponent)(require_components_fish_command.FishCompletionsCommand, {})
272
+ (0, _alloy_js_core_jsx_runtime.createComponent)(require_components_bash_shared.BashCompletionsShared, {}),
273
+ (0, _alloy_js_core_jsx_runtime.createComponent)(require_components_bash_script_command.BashScriptCompletionsCommand, {}),
274
+ (0, _alloy_js_core_jsx_runtime.createComponent)(require_components_bash_config_command.BashConfigCompletionsCommand, {}),
275
+ (0, _alloy_js_core_jsx_runtime.createComponent)(require_components_zsh_shared.ZshCompletionsShared, {}),
276
+ (0, _alloy_js_core_jsx_runtime.createComponent)(require_components_zsh_script_command.ZshScriptCompletionsCommand, {}),
277
+ (0, _alloy_js_core_jsx_runtime.createComponent)(require_components_zsh_config_command.ZshConfigCompletionsCommand, {}),
278
+ (0, _alloy_js_core_jsx_runtime.createComponent)(require_components_powershell_shared.PowerShellCompletionsShared, {}),
279
+ (0, _alloy_js_core_jsx_runtime.createComponent)(require_components_powershell_script_command.PowerShellScriptCompletionsCommand, {}),
280
+ (0, _alloy_js_core_jsx_runtime.createComponent)(require_components_powershell_config_command.PowerShellConfigCompletionsCommand, {}),
281
+ (0, _alloy_js_core_jsx_runtime.createComponent)(require_components_fish_shared.FishCompletionsShared, {}),
282
+ (0, _alloy_js_core_jsx_runtime.createComponent)(require_components_fish_script_command.FishScriptCompletionsCommand, {}),
283
+ (0, _alloy_js_core_jsx_runtime.createComponent)(require_components_fish_config_command.FishConfigCompletionsCommand, {})
120
284
  ]);
121
285
  }
122
286
  }
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.cts","names":[],"sources":["../src/index.tsx"],"mappings":";;;;;;;;cAuCa,MAAA,oBACM,wBAAA,GAA2B,wBAAA,EAE5C,OAAA,GAAS,wBAAA,KACR,MAAA,CAAO,QAAA"}
1
+ {"version":3,"file":"index.d.cts","names":[],"sources":["../src/index.tsx"],"mappings":";;;;;;;;cA+Ca,MAAA,oBACM,wBAAA,GAA2B,wBAAA,EAE5C,OAAA,GAAS,wBAAA,KACR,MAAA,CAAO,QAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.mts","names":[],"sources":["../src/index.tsx"],"mappings":";;;;;;;;cAuCa,MAAA,oBACM,wBAAA,GAA2B,wBAAA,EAE5C,OAAA,GAAS,wBAAA,KACR,MAAA,CAAO,QAAA"}
1
+ {"version":3,"file":"index.d.mts","names":[],"sources":["../src/index.tsx"],"mappings":";;;;;;;;cA+Ca,MAAA,oBACM,wBAAA,GAA2B,wBAAA,EAE5C,OAAA,GAAS,wBAAA,KACR,MAAA,CAAO,QAAA"}