Skip to content
This repository has been archived by the owner on May 3, 2022. It is now read-only.

Commit

Permalink
Move log into correct domain
Browse files Browse the repository at this point in the history
  • Loading branch information
Kikobeats committed Oct 9, 2017
1 parent 4a370d9 commit eb41ce0
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion bin/serve/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
const importCwd = require('import-cwd')
const path = require('path')

const { error: logError } = require('../cli/log')
const listenMessage = require('./listen-message')
const getPort = require('./get-port')
const { error: logError } = require('./log')

module.exports = async ({ filename, pkg, cli, restarting }) => {
const { userPort, port, inUse } = await getPort(cli)
Expand Down
2 changes: 1 addition & 1 deletion bin/watch/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
const { watch } = require('chokidar')
const debounce = require('debounce')

const { restart: logRestart } = require('../serve/log')
const { restart: logRestart } = require('../cli/log')
const getWatchConfig = require('./get-watch-config')
const destroySockets = require('./destroy-sockets')
const restartServer = require('./restart-server')
Expand Down

0 comments on commit eb41ce0

Please sign in to comment.