Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangyuang committed Aug 23, 2021
1 parent 828c449 commit 1a647a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/plugin-nestjs/src/start.ts
Expand Up @@ -14,7 +14,7 @@ const start = () => {
if (data.match('Nest application successfully started')) {
spinner.stop()
const https = process.env.HTTPS
logGreen(nestStartTips || `Server is listening on ${https ? 'https' : 'http'}://localhost:${serverPort}`)
logGreen(nestStartTips ?? `Server is listening on ${https ? 'https' : 'http'}://localhost:${serverPort}`)
}
})
stderr?.on('data', function (data) {
Expand Down

0 comments on commit 1a647a7

Please sign in to comment.