Giter Site home page Giter Site logo

Comments (13)

callmemagnus avatar callmemagnus commented on May 24, 2024

I would really appreciate that...

I'm using grunt-webpack in CI and it introduces webpack-dev-server peerDependency that is impossible to install because of this issue socketio/engine.io-client#348.

Could this be on the agenda in a reasonable timeframe ?

from grunt-webpack.

rubennorte avatar rubennorte commented on May 24, 2024

I'd also appreciate that. For the moment I'm using the webpack node API directly from grunt, but it'd be nice to reduce the boilerplate using this package if it wouldn't include the webpack-dev-server.

My task, in case it's useful for anyone:

  grunt.registerTask(
    'buildJs',
    function(mode) {
      var done = this.async();
      var config = require('../../resources/config/webpack.config');

      var handler = function(err, stats) {
        console.log(stats.toString({
          colors: true
        }));

        done(!err && !stats.hasErrors());
        done = function() {};
      };

      var compiler = webpack(config);
      if (mode === 'development') {
        compiler.watch(grunt.config('jsConfig.watchDelay'), handler);
      } else {
        compiler.run(handler);
      }
    });

from grunt-webpack.

 avatar commented on May 24, 2024

I'd appreciate that.
I don't use the web server at all, but the grunt task does not seem to work when the server module is not present.

from grunt-webpack.

callmemagnus avatar callmemagnus commented on May 24, 2024

In the meantime, I created: https://www.npmjs.com/package/grunt-webpack-without-server

from grunt-webpack.

joth avatar joth commented on May 24, 2024

+1. would be greatly appreciated

from grunt-webpack.

pr1ntr avatar pr1ntr commented on May 24, 2024

+1.

from grunt-webpack.

andresn avatar andresn commented on May 24, 2024

@sokra +1, our problem is npm@3 stops installing peerDep

from grunt-webpack.

BYK avatar BYK commented on May 24, 2024

@sokra - what do we need to get this moving?

from grunt-webpack.

hxgdzyuyi avatar hxgdzyuyi commented on May 24, 2024

+1

from grunt-webpack.

srhoulam avatar srhoulam commented on May 24, 2024

+1

from grunt-webpack.

sebastianhaas avatar sebastianhaas commented on May 24, 2024

+1

from grunt-webpack.

anton-suprunov avatar anton-suprunov commented on May 24, 2024

+1

from grunt-webpack.

danez avatar danez commented on May 24, 2024

This is done as of version 2.0.0-beta.1

from grunt-webpack.

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.