(url: string)
| 85 | }; |
| 86 | |
| 87 | const waitForGotify = (url: string): Promise<void> => |
| 88 | new Promise((resolve, err) => { |
| 89 | wait({resources: [url], timeout: 40000}, (error: string) => { |
| 90 | if (error) { |
| 91 | console.log(error); |
| 92 | err(error); |
| 93 | } else { |
| 94 | resolve(); |
| 95 | } |
| 96 | }); |
| 97 | }); |
| 98 | |
| 99 | const buildGoPlugin = (filename: string, pluginPath: string): Promise<void> => { |
| 100 | process.stdout.write(`### Building Plugin ${pluginPath}\n`); |
no outgoing calls
no test coverage detected
searching dependent graphs…