mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
use template literals for console.log
This commit is contained in:
parent
f2653d0e2f
commit
6ca52f3ee2
|
@ -23,7 +23,7 @@ clean(dir)
|
|||
.then(async () => {
|
||||
const srv = new Server({ dir, dev: true, hotReload: true })
|
||||
await srv.start(argv.port)
|
||||
console.log('> Ready on http://localhost:%d', argv.port)
|
||||
console.log(`> Ready on http://localhost:${argv.port}`)
|
||||
|
||||
// Check if pages dir exists and warn if not
|
||||
if (!(await exists(join(dir, 'pages')))) {
|
||||
|
|
|
@ -20,7 +20,7 @@ const dir = resolve(argv._[0] || '.')
|
|||
const srv = new Server({ dir })
|
||||
srv.start(argv.port)
|
||||
.then(() => {
|
||||
console.log('> Ready on http://localhost:%d', argv.port)
|
||||
console.log(`> Ready on http://localhost:${argv.port}`)
|
||||
})
|
||||
.catch((err) => {
|
||||
console.error(err)
|
||||
|
|
Loading…
Reference in a new issue