Giter Club home page Giter Club logo

Comments (5)

kenwheeler avatar kenwheeler commented on May 10, 2024 2

Looking into this

from webpack-dashboard.

kenwheeler avatar kenwheeler commented on May 10, 2024

Did you set your webpack output to quiet?

from webpack-dashboard.

kenwheeler avatar kenwheeler commented on May 10, 2024

Closing, will reopen pending more info

from webpack-dashboard.

TimothyKrell avatar TimothyKrell commented on May 10, 2024

Sorry! I missed your response. I do have webpack set to quiet.

webpack.conf:

var path = require('path');
var webpack = require('webpack');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
var DashboardPlugin = require('webpack-dashboard/plugin')

module.exports = {
  entry: [
    './resources/react/app'
  ],
  output: {
    path: 'public/',
    publicPath: 'http://localhost:8090/',
    filename: 'app.js'
  },
  module: {
    preLoaders: [
      {
        test: /\.jsx?$/,
        loader: 'eslint-loader'
      }
    ],
    loaders: [
      {
        test: /.jsx?$/,
        loader: 'babel-loader',
        exclude: /(node_modules)/,
        query: {
          babelrc: false,
          cacheDirectory: true,
          sourceMaps: false,
          presets: [
            'react',
            'es2015',
            'stage-0',
          ],
          plugins: [
            'babel-plugin-transform-decorators-legacy'
          ]
        }
      },
      { test: /.less$/, loader: ExtractTextPlugin.extract('style-loader', 'css-loader!less-loader') },
      { test: /.scss$/, loader: ExtractTextPlugin.extract('style-loader', 'css-loader!ruby-sass-loader?' +
        '&includePaths[]=' +
          path.resolve(__dirname, 'resources/lib') +
        '&includePaths[]=' +
          path.resolve(__dirname, 'node_modules') +
        '&includePaths[]=' +
          path.resolve(__dirname, 'resources/styles')
                                                         )
      },
      { test: /.css$/, loader: ExtractTextPlugin.extract('style-loader', 'css-loader') },
      { test: /\.eot(\?.*)?$/, loader: 'file' },
      { test: /\.ttf(\?.*)?$/, loader: 'file' },
      { test: /\.woff(\?.*)?$/, loader: 'file' },
      { test: /\.svg(\?.*)?$/, loader: 'file' },
      { test: /\.png(\?.*)?$/, loader: 'file' },
      { test: /\.html$/, loader: 'html', exclude: /node_modules/ }
    ],
  },
  eslint: {
    configFile: path.join(__dirname, 'eslint.js'),
    useEslintrc: false,
  },
  resolve: {
    alias: { npm: path.resolve('./node_modules') },
    modulesDirectories: ['shared', 'node_modules', 'shared'],
  },
  devtool: 'eval',
  plugins: [
    new ExtractTextPlugin('style.css', {
     allChunks: true
    }),
    new webpack.DefinePlugin({
     __DEV__: JSON.stringify(JSON.parse(process.env.BUILD_DEV || 'true')),
    }),
    new DashboardPlugin(),
  ]
};

npm script command:
webpack-dashboard -- webpack-dev-server --quiet --colors --hot --inline --port 8090 --config webpack.dev.config.js

from webpack-dashboard.

ryansully avatar ryansully commented on May 10, 2024

Still seeing this issue in 0.4.0.

from webpack-dashboard.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.