Open achingbrain opened 1 year ago
The commit message for https://github.com/tschaub/gh-pages/commit/e1374b331b4a4365c5f266e94a27b01e702adc74 says to always return a promise but I think this block can still cause the publish method to return void and not Promise<void> - it might be simpler to use the async keyword on the function?
void
Promise<void>
async
The commit message for https://github.com/tschaub/gh-pages/commit/e1374b331b4a4365c5f266e94a27b01e702adc74 says to always return a promise but I think this block can still cause the publish method to return
void
and notPromise<void>
- it might be simpler to use theasync
keyword on the function?