We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 954d2dc commit b660e3eCopy full SHA for b660e3e
index.js
@@ -1,4 +1,4 @@
1
-console.log('🐾 Starting...')
+console.log('Starting...🐾')
2
3
import yargs from 'yargs'
4
import cfonts from 'cfonts'
@@ -32,7 +32,7 @@ function start(file) {
32
setupMaster({ exec: args[0], args: args.slice(1) })
33
let p = fork()
34
p.on('message', data => {
35
- console.log('[✅RECEIVED]', data)
+ console.log('[RECEIVED]✅', data)
36
switch (data) {
37
case 'reset':
38
p.process.kill()
@@ -46,7 +46,7 @@ function start(file) {
46
})
47
p.on('exit', (_, code) => {
48
isRunning = false
49
- console.error('[❗]Exited with code:', code)
+ console.error('❗Exited with code:', code)
50
if (code !== 0) return start(file)
51
watchFile(args[0], () => {
52
unwatchFile(args[0])
0 commit comments