* OpenCode has no plugin install command. We warn-and-skip each declared plugin * rather than fabricating a command.
(projection: WorkspaceProjection)
| 181 | * rather than fabricating a command. |
| 182 | */ |
| 183 | function projectPlugins(projection: WorkspaceProjection): void { |
| 184 | for (const name of projection.plugins) { |
| 185 | console.warn( |
| 186 | `[opencode] plugin "${name}" cannot be installed: OpenCode has no plugin ` + |
| 187 | 'install command. Skipping.', |
| 188 | ) |
| 189 | } |
| 190 | } |
| 191 | |
| 192 | /** |
| 193 | * Project a `WorkspaceProjection` into the OpenCode sandbox. Safe to call on |
no test coverage detected