(path: string | vscode.Uri)
| 289 | } |
| 290 | }; |
| 291 | export const tryReadFile = async (path: string | vscode.Uri) => { |
| 292 | try { |
| 293 | return await vscode.workspace.fs.readFile(typeof path === "string" ? vscode.Uri.file(path) : path); |
| 294 | } catch (e) { |
| 295 | return []; |
| 296 | } |
| 297 | }; |
| 298 | |
| 299 | export const generateCommand = (command: string) => `remix-forge.${command}`; |
nothing calls this directly
no outgoing calls
no test coverage detected