Coder Social home page Coder Social logo

Comments (8)

juanfran avatar juanfran commented on September 26, 2024

that's very weird... try to add the verbose options and see what prints..

have you tried this?

gulp.task('scss-lint', function() {
    return gulp.src(['src/styles/**/*.scss', '!**/*_scsslint_tmp*.scss'])
        .pipe($.scssLint())
});

from gulp-scss-lint.

SpenceDiNicolantonio avatar SpenceDiNicolantonio commented on September 26, 2024

I've been experiencing a similar issue...

I use a similar glob to reference my source in the following task:

gulp.task('styles', ['lint:sass'], function() {
    return gulp.src(config.styles.src)
        .pipe(...
}

and have the same glob registered for a watch to trigger my styles task:

gulp.watch(config.styles.src, ['styles']);

This should work such that whenever I change a file, the lint:sass task is run, followed by the styles task; however, whenever I change a file, I see the following output:

[13:21:41] Starting 'lint:sass'...
[13:21:41] gulp-debug: app/modules/header/header-component_scsslint_tmp9067563165859372843.scss
[13:21:41] gulp-debug: 1 items
[13:21:41] gulp-notify: [Compile Error] Input file did not exist or was not readable
[13:21:41] Finished 'lint:sass' after 246 ms
[13:21:41] Starting 'styles'...
[13:21:41] Starting 'lint:sass'...
[13:21:41] gulp-debug: app/modules/header/header-component.scss
[13:21:41] gulp-debug: 1 items
[13:21:42] Finished 'lint:sass' after 1.08 s
[BS] Reloading Browsers...
[13:21:43] Finished 'styles' after 2.29 s

As you can see, there is an additional execution of the lint:sass task somehow, with header-component_scsslint_tmp9067563165859372843.scss included in the stream.

from gulp-scss-lint.

SpenceDiNicolantonio avatar SpenceDiNicolantonio commented on September 26, 2024

I've managed to work around the issue by extending gulp.watch to add an exclusion to the passed glob:

var EXCLUDE_GLOB = '!!(node_modules)/**/*_scsslint_tmp*';    // !(node_modules) for performance

var gulp_watch = gulp.watch;
    gulp.watch = function() {
        var src = arguments[0];

        src = _.isString(src) ? [src] : src;
        if (!_.contains(src, EXCLUDE_GLOB)) {
            src.push(EXCLUDE_GLOB);
        }

        arguments[0] = src;
        return gulp_watch.apply(gulp, arguments);
    };

The result is the following, as expected:

[13:45:36] Starting 'lint:sass'...
[13:45:36] gulp-debug: app/modules/header/header-component.scss
[13:45:36] gulp-debug: 1 items
[13:45:37] Finished 'lint:sass' after 406 ms
[13:45:37] Starting 'styles'...
[BS] Reloading Browsers...
[13:45:39] Finished 'styles' after 2.51 s

from gulp-scss-lint.

juanfran avatar juanfran commented on September 26, 2024

thanks @SpenceDiNicolantonio !

from gulp-scss-lint.

SpenceDiNicolantonio avatar SpenceDiNicolantonio commented on September 26, 2024

@juanfran, I assume these temp files are generated by scss-lint itself and not by gulp-scss-lint. Can you confirm? If this is the case, I'll submit a bug to the scss-lint project. I think these files should be generated in the system's temp folder.

from gulp-scss-lint.

juanfran avatar juanfran commented on September 26, 2024

that's it, gulp-scss-lint doesn't create any tmp file

from gulp-scss-lint.

AndyOGo avatar AndyOGo commented on September 26, 2024

I think it could be an IDE problem, I use PHPStorm (newest version) and get these weird tmp files for my js files.
Yes .jsnot .scss...

It's horrible it creates those tmp files inside source dir, and scsslint for js files does not make any sense...

tasks/docs-scripts_scsslint_tmp1537225672253761620.js
tasks/scripts-bundle_scsslint_tmp4377624646903046346.js

from gulp-scss-lint.

AndyOGo avatar AndyOGo commented on September 26, 2024

I created an issue at the scss-lint inteliJ plugin
idok/scss-lint-plugin#45

from gulp-scss-lint.

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.