revert showCursor

This commit is contained in:
Pooya Parsa 2018-04-01 00:29:53 +04:30
parent 5e595e7e66
commit a5373f2464
2 changed files with 0 additions and 7 deletions

View File

@ -5,17 +5,12 @@ import _ from 'lodash'
import VueLoader from 'vue-loader' import VueLoader from 'vue-loader'
import MiniCssExtractPlugin from 'mini-css-extract-plugin' import MiniCssExtractPlugin from 'mini-css-extract-plugin'
import WebpackBar from 'webpackbar' import WebpackBar from 'webpackbar'
import LogUpdate from 'log-update'
import { isUrl, urlJoin } from '../../common/utils' import { isUrl, urlJoin } from '../../common/utils'
import StyleLoader from './utils/style-loader' import StyleLoader from './utils/style-loader'
import WarnFixPlugin from './plugins/warnfix' import WarnFixPlugin from './plugins/warnfix'
import StatsPlugin from './plugins/stats' import StatsPlugin from './plugins/stats'
const logUpdate = LogUpdate.create(process.stderr, {
showCursor: true
})
export default class WebpackBaseConfig { export default class WebpackBaseConfig {
constructor(builder, options) { constructor(builder, options) {
this.name = options.name this.name = options.name
@ -212,7 +207,6 @@ export default class WebpackBaseConfig {
name: this.isServer ? 'server' : 'client', name: this.isServer ? 'server' : 'client',
color: this.isServer ? 'orange' : 'green', color: this.isServer ? 'orange' : 'green',
compiledIn: false, compiledIn: false,
logUpdate,
done: () => { done: () => {
if (this.options.dev) { if (this.options.dev) {
this.nuxt.showReady(true) this.nuxt.showReady(true)

View File

@ -94,7 +94,6 @@
"html-webpack-plugin": "^3.1.0", "html-webpack-plugin": "^3.1.0",
"launch-editor-middleware": "^2.2.1", "launch-editor-middleware": "^2.2.1",
"lodash": "^4.17.5", "lodash": "^4.17.5",
"log-update": "^2.3.0",
"lru-cache": "^4.1.2", "lru-cache": "^4.1.2",
"memory-fs": "^0.4.1", "memory-fs": "^0.4.1",
"mini-css-extract-plugin": "^0.4.0", "mini-css-extract-plugin": "^0.4.0",