We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a629b2c commit a4dab76Copy full SHA for a4dab76
main.js
@@ -8,13 +8,11 @@ const SimpleReporter = class {
8
}
9
10
log(logObj) {
11
- this.stream.write(`${logObj}\n`)
+ this.stream.write(`${logObj.args[0]}\n`)
12
13
14
15
-consola.setReporters([
16
- new SimpleReporter()
17
-])
+consola.setReporters(new SimpleReporter())
18
const octokit = new Octokit()
19
20
const [owner, repo] = process.env.TRAVIS_REPO_SLUG.split('/')
0 commit comments