Skip to content

Commit a260cd0

Browse files
committed
chore: remove useless method
1 parent 685128f commit a260cd0

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

utils/logger.js

-12
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,9 @@ class Logger {
1414
this.log(kleur.red('error'), ...args)
1515
}
1616

17-
warn(...args) {
18-
this.log(kleur.yellow('warning'), ...args)
19-
}
20-
2117
done(...args) {
2218
this.log(kleur.green(process.platform === 'win32' ? '√' : '✔'), ...args)
2319
}
24-
25-
tip(...args) {
26-
this.log(kleur.blue('tip'), ...args)
27-
}
28-
29-
info(...args) {
30-
this.log(kleur.cyan('info'), ...args)
31-
}
3220
}
3321

3422
module.exports = new Logger()

0 commit comments

Comments
 (0)