Coder Social home page Coder Social logo

TypeError: Object #<Object> has no method 'apply' about gulp-sequence HOT 7 CLOSED

teambition avatar teambition commented on August 22, 2024
TypeError: Object # has no method 'apply'

from gulp-sequence.

Comments (7)

zensh avatar zensh commented on August 22, 2024

fileChanged task has a mistake, you should use callback:

gulp.task("fileChanged", function(callback)
{
    // Try to access a non-existent object "event"
    webpack.watch(event.path, webpackOptions,
    {
        base: path.resolve(event.path)
    }, function(err, stats)
    {
        // ...
        callback(err)
    });
}

from gulp-sequence.

cowwoc avatar cowwoc commented on August 22, 2024

@zensh I understand that the task has a mistake (I acknowledged as much above). My point is that buggy user code should not cause the gulp-sequence plugin to crash. It should catch and recover from this kind of exception (print an error message and shut down gracefully).

from gulp-sequence.

zensh avatar zensh commented on August 22, 2024

I will improve it, and update for gulp v4

from gulp-sequence.

zensh avatar zensh commented on August 22, 2024

Hi, @cowwoc, watch task should write in this way:

gulp.task("watch", ["browser-sync"], function()
{
    gulp.watch(buildConfig.srcDir + "**/*.js", ["javascript"]).on("change", function() {
      sequence("fileChanged")();
    });
    gulp.watch(buildConfig.srcDir + "**/*.scss").on("change", function() {
      sequence("fileChanged", "css")();
    });
});

sequence return a thunk function that expect a callback as argument, change event listener called it with event object~, Object #<Object> has no method 'apply'.

from gulp-sequence.

cowwoc avatar cowwoc commented on August 22, 2024

Got it. Were any commits applied against improving error handling? I ask because I don't see any references attached to this issue.

from gulp-sequence.

zensh avatar zensh commented on August 22, 2024

[email protected], will throw a TypeError

from gulp-sequence.

cowwoc avatar cowwoc commented on August 22, 2024

Sounds good. Feel free to close this issue.

from gulp-sequence.

Related Issues (13)

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.