Code Monkey home page Code Monkey logo

Comments (6)

Elephant-Vessel avatar Elephant-Vessel commented on September 28, 2024

I've set debug to true, and can se that node-livereload is actually only trying to refresh the specific files that have changed. Seems like the problem is in the chrome plugin? I'd like to try in firefox as well, but it refuses to install the plugin since it not verified.

from node-livereload.

Elephant-Vessel avatar Elephant-Vessel commented on September 28, 2024

Using the old firefox add-on, it does the same thing. One file change => reloads everything. Disabling the security check and installing the new add-on gives the same behavior.

from node-livereload.

Elephant-Vessel avatar Elephant-Vessel commented on September 28, 2024

I think I've figured it out, the livereload server is sending an event saying that wwwroot\css\mains\create-task\style\main.css is updated, but the plugin can not find that files since the web page is in wwwroot itself, so it updates all the stylesheets instead. So I need an option to define the base path so that this server knows to send the event with css\mains\create-task\style\main.css instead.

from node-livereload.

Elephant-Vessel avatar Elephant-Vessel commented on September 28, 2024

I hacked around it like this, I had to unixify the slashes as well:

module.exports = function (watchDir) {

    var slash = require("slash");

    return function () {

        var livereload = require('livereload');
        server = livereload.createServer({
            debug: true,
            originalPath: "http://localhost/mac",
        });

        var oldFunc = server.filterRefresh;
        server.filterRefresh = function (filePath) {
            filePath = slash(filePath.replace("wwwroot\\", ""));
            oldFunc.call(this, filePath);
        };

        return server.watch("wwwroot/css/");
    }
}

This works well except that it emitts a change event three times for some files, but that's good enough for me.

from node-livereload.

napcs avatar napcs commented on September 28, 2024

This is interesting. I'm trying to wrap my head around the problem a little more. Can you create a simplified repository that exhibits the incorrect behavior?

from node-livereload.

napcs avatar napcs commented on September 28, 2024

Closing.

from node-livereload.

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.