suppress logging on test (#455)

This commit is contained in:
Naoyuki Kanezawa 2016-12-21 23:39:08 +09:00 committed by Guillermo Rauch
parent f1c6ea3248
commit 4faa281f23
3 changed files with 9 additions and 6 deletions

View file

@ -11,7 +11,7 @@ import DynamicEntryPlugin from './plugins/dynamic-entry-plugin'
import DetachPlugin from './plugins/detach-plugin'
import getConfig from '../config'
export default async function createCompiler (dir, { dev = false } = {}) {
export default async function createCompiler (dir, { dev = false, quiet = false } = {}) {
dir = resolve(dir)
const pages = await glob('pages/**/*.js', {
@ -66,9 +66,11 @@ export default async function createCompiler (dir, { dev = false } = {}) {
new DynamicEntryPlugin(),
new UnlinkFilePlugin(),
new WatchRemoveEventPlugin(),
new WatchPagesPlugin(dir),
new FriendlyErrorsWebpackPlugin()
new WatchPagesPlugin(dir)
)
if (!quiet) {
plugins.push(new FriendlyErrorsWebpackPlugin())
}
} else {
plugins.push(
new webpack.DefinePlugin({

View file

@ -8,8 +8,9 @@ import babel, { watch } from './build/babel'
import read from './read'
export default class HotReloader {
constructor (dir) {
constructor (dir, { quiet } = {}) {
this.dir = dir
this.quiet = quiet
this.middlewares = []
this.webpackDevMiddleware = null
this.webpackHotMiddleware = null
@ -38,7 +39,7 @@ export default class HotReloader {
this.watch()
const [compiler] = await Promise.all([
webpack(this.dir, { dev: true }),
webpack(this.dir, { dev: true, quiet: this.quiet }),
clean(this.dir)
])

View file

@ -23,7 +23,7 @@ export default class Server {
this.quiet = quiet
this.renderOpts = { dir: this.dir, dev, staticMarkup }
this.router = new Router()
this.hotReloader = dev ? new HotReloader(this.dir) : null
this.hotReloader = dev ? new HotReloader(this.dir, { quiet }) : null
this.http = null
this.config = getConfig(dir)