GULP SRC | Negatives not working as expected












1















I was trying to understand how gulp works, and particularly how to select files, so I ran some tests. But the results are not as they were supposed to be.



Could somebody please explain me why I get theses results and if it was the result expected.



Files set



assets
|-script01.js
|--sub01
|-script02.js
|-script03.js
|--sub02
|-script04.js
|--sub03
|-script05.js


My aim was no get all files except all the sub02 folder. Pretty simple as it seemed :)



gulpfile.js



const { src, dest } = require('gulp');

exports.test01 = function() {
return src(['assets/**/*', '!assets/sub02'])
.pipe(dest('output/'))
}


But the output was



// output
// |-script01.js
// |--sub01
// |-script02.js
// |-script03.js
// |--sub02
// |-script04.js
// |--sub03
// |-script05.js


So I ran different tests like



exports.test02 = function() {
return src(['assets/**/*', '!assets/sub02/*'])
.pipe(dest('output/'))
}


Which output is



output
|-script01.js
|--sub01
|-script02.js
|-script03.js
|--sub02
|--sub03
|-script05.js


Then I tried this



exports.test03 = function() {
return src(['assets/**/*', '!assets/sub02/**/*'])
.pipe(dest('output/'))
}


Which logically results in



output
|-script01.js
|--sub01
|-script02.js
|-script03.js
|--sub02


And finally I understood how to accomplish what I wanted



exports.test04 = function() {
return src(['assets/**/*', '!assets/sub02/**/*', '!assets/sub02'])
.pipe(dest('output/'))
}


Yay!



output
|-script01.js
|--sub01
|-script02.js
|-script03.js


But regarding the doc (of gulp, https://gulpjs.com/docs/en/getting-started/explaining-globs), I should be able to accomplish Test 01



exports.test05 = function() {
return src(['**/*.js', '!node_modules/'])
.pipe(dest('output/'))
}
// Result : all directories and their .js files in output
// including node_mudules ones.


And here's a bonus question. Running the tests, I tried this. But didn't work neither. Why ?



// --- BONUS QUESTION
exports.bonus = function() {
return src(['assets/**/*', '!assets/sub02/**/*', 'assets/sub02/script04.js'])
.pipe(dest('output/'))
}

output
|-script01.js
|--sub01
|-script02.js
|-script03.js
|--sub02
* script04.js missing :( *


If you want to test it quickly :



mkdir -p assets assets/sub01 assets/sub02/sub03 output;

touch assets/script01.js assets/sub01/script02.js assets/sub01/script03.js assets/sub02/script04.js assets/sub02/sub03/script05.js


Many thanks in advance !





EDIT



After further investigation, this works to



exports.test01 = function() {
return src(['assets/**/*.js', '!assets/sub02/**/*.js'])
.pipe(dest('output/'))
}

// output
// |-script01.js
// |--sub01
// |-script02.js
// |-script03.js


So as I understand it, ** includes assets/sub02 folder as folder.
So dest copies the folder as folder, except if all the files first selected in src first globs are negated. Any thoughts ?










share|improve this question





























    1















    I was trying to understand how gulp works, and particularly how to select files, so I ran some tests. But the results are not as they were supposed to be.



    Could somebody please explain me why I get theses results and if it was the result expected.



    Files set



    assets
    |-script01.js
    |--sub01
    |-script02.js
    |-script03.js
    |--sub02
    |-script04.js
    |--sub03
    |-script05.js


    My aim was no get all files except all the sub02 folder. Pretty simple as it seemed :)



    gulpfile.js



    const { src, dest } = require('gulp');

    exports.test01 = function() {
    return src(['assets/**/*', '!assets/sub02'])
    .pipe(dest('output/'))
    }


    But the output was



    // output
    // |-script01.js
    // |--sub01
    // |-script02.js
    // |-script03.js
    // |--sub02
    // |-script04.js
    // |--sub03
    // |-script05.js


    So I ran different tests like



    exports.test02 = function() {
    return src(['assets/**/*', '!assets/sub02/*'])
    .pipe(dest('output/'))
    }


    Which output is



    output
    |-script01.js
    |--sub01
    |-script02.js
    |-script03.js
    |--sub02
    |--sub03
    |-script05.js


    Then I tried this



    exports.test03 = function() {
    return src(['assets/**/*', '!assets/sub02/**/*'])
    .pipe(dest('output/'))
    }


    Which logically results in



    output
    |-script01.js
    |--sub01
    |-script02.js
    |-script03.js
    |--sub02


    And finally I understood how to accomplish what I wanted



    exports.test04 = function() {
    return src(['assets/**/*', '!assets/sub02/**/*', '!assets/sub02'])
    .pipe(dest('output/'))
    }


    Yay!



    output
    |-script01.js
    |--sub01
    |-script02.js
    |-script03.js


    But regarding the doc (of gulp, https://gulpjs.com/docs/en/getting-started/explaining-globs), I should be able to accomplish Test 01



    exports.test05 = function() {
    return src(['**/*.js', '!node_modules/'])
    .pipe(dest('output/'))
    }
    // Result : all directories and their .js files in output
    // including node_mudules ones.


    And here's a bonus question. Running the tests, I tried this. But didn't work neither. Why ?



    // --- BONUS QUESTION
    exports.bonus = function() {
    return src(['assets/**/*', '!assets/sub02/**/*', 'assets/sub02/script04.js'])
    .pipe(dest('output/'))
    }

    output
    |-script01.js
    |--sub01
    |-script02.js
    |-script03.js
    |--sub02
    * script04.js missing :( *


    If you want to test it quickly :



    mkdir -p assets assets/sub01 assets/sub02/sub03 output;

    touch assets/script01.js assets/sub01/script02.js assets/sub01/script03.js assets/sub02/script04.js assets/sub02/sub03/script05.js


    Many thanks in advance !





    EDIT



    After further investigation, this works to



    exports.test01 = function() {
    return src(['assets/**/*.js', '!assets/sub02/**/*.js'])
    .pipe(dest('output/'))
    }

    // output
    // |-script01.js
    // |--sub01
    // |-script02.js
    // |-script03.js


    So as I understand it, ** includes assets/sub02 folder as folder.
    So dest copies the folder as folder, except if all the files first selected in src first globs are negated. Any thoughts ?










    share|improve this question



























      1












      1








      1








      I was trying to understand how gulp works, and particularly how to select files, so I ran some tests. But the results are not as they were supposed to be.



      Could somebody please explain me why I get theses results and if it was the result expected.



      Files set



      assets
      |-script01.js
      |--sub01
      |-script02.js
      |-script03.js
      |--sub02
      |-script04.js
      |--sub03
      |-script05.js


      My aim was no get all files except all the sub02 folder. Pretty simple as it seemed :)



      gulpfile.js



      const { src, dest } = require('gulp');

      exports.test01 = function() {
      return src(['assets/**/*', '!assets/sub02'])
      .pipe(dest('output/'))
      }


      But the output was



      // output
      // |-script01.js
      // |--sub01
      // |-script02.js
      // |-script03.js
      // |--sub02
      // |-script04.js
      // |--sub03
      // |-script05.js


      So I ran different tests like



      exports.test02 = function() {
      return src(['assets/**/*', '!assets/sub02/*'])
      .pipe(dest('output/'))
      }


      Which output is



      output
      |-script01.js
      |--sub01
      |-script02.js
      |-script03.js
      |--sub02
      |--sub03
      |-script05.js


      Then I tried this



      exports.test03 = function() {
      return src(['assets/**/*', '!assets/sub02/**/*'])
      .pipe(dest('output/'))
      }


      Which logically results in



      output
      |-script01.js
      |--sub01
      |-script02.js
      |-script03.js
      |--sub02


      And finally I understood how to accomplish what I wanted



      exports.test04 = function() {
      return src(['assets/**/*', '!assets/sub02/**/*', '!assets/sub02'])
      .pipe(dest('output/'))
      }


      Yay!



      output
      |-script01.js
      |--sub01
      |-script02.js
      |-script03.js


      But regarding the doc (of gulp, https://gulpjs.com/docs/en/getting-started/explaining-globs), I should be able to accomplish Test 01



      exports.test05 = function() {
      return src(['**/*.js', '!node_modules/'])
      .pipe(dest('output/'))
      }
      // Result : all directories and their .js files in output
      // including node_mudules ones.


      And here's a bonus question. Running the tests, I tried this. But didn't work neither. Why ?



      // --- BONUS QUESTION
      exports.bonus = function() {
      return src(['assets/**/*', '!assets/sub02/**/*', 'assets/sub02/script04.js'])
      .pipe(dest('output/'))
      }

      output
      |-script01.js
      |--sub01
      |-script02.js
      |-script03.js
      |--sub02
      * script04.js missing :( *


      If you want to test it quickly :



      mkdir -p assets assets/sub01 assets/sub02/sub03 output;

      touch assets/script01.js assets/sub01/script02.js assets/sub01/script03.js assets/sub02/script04.js assets/sub02/sub03/script05.js


      Many thanks in advance !





      EDIT



      After further investigation, this works to



      exports.test01 = function() {
      return src(['assets/**/*.js', '!assets/sub02/**/*.js'])
      .pipe(dest('output/'))
      }

      // output
      // |-script01.js
      // |--sub01
      // |-script02.js
      // |-script03.js


      So as I understand it, ** includes assets/sub02 folder as folder.
      So dest copies the folder as folder, except if all the files first selected in src first globs are negated. Any thoughts ?










      share|improve this question
















      I was trying to understand how gulp works, and particularly how to select files, so I ran some tests. But the results are not as they were supposed to be.



      Could somebody please explain me why I get theses results and if it was the result expected.



      Files set



      assets
      |-script01.js
      |--sub01
      |-script02.js
      |-script03.js
      |--sub02
      |-script04.js
      |--sub03
      |-script05.js


      My aim was no get all files except all the sub02 folder. Pretty simple as it seemed :)



      gulpfile.js



      const { src, dest } = require('gulp');

      exports.test01 = function() {
      return src(['assets/**/*', '!assets/sub02'])
      .pipe(dest('output/'))
      }


      But the output was



      // output
      // |-script01.js
      // |--sub01
      // |-script02.js
      // |-script03.js
      // |--sub02
      // |-script04.js
      // |--sub03
      // |-script05.js


      So I ran different tests like



      exports.test02 = function() {
      return src(['assets/**/*', '!assets/sub02/*'])
      .pipe(dest('output/'))
      }


      Which output is



      output
      |-script01.js
      |--sub01
      |-script02.js
      |-script03.js
      |--sub02
      |--sub03
      |-script05.js


      Then I tried this



      exports.test03 = function() {
      return src(['assets/**/*', '!assets/sub02/**/*'])
      .pipe(dest('output/'))
      }


      Which logically results in



      output
      |-script01.js
      |--sub01
      |-script02.js
      |-script03.js
      |--sub02


      And finally I understood how to accomplish what I wanted



      exports.test04 = function() {
      return src(['assets/**/*', '!assets/sub02/**/*', '!assets/sub02'])
      .pipe(dest('output/'))
      }


      Yay!



      output
      |-script01.js
      |--sub01
      |-script02.js
      |-script03.js


      But regarding the doc (of gulp, https://gulpjs.com/docs/en/getting-started/explaining-globs), I should be able to accomplish Test 01



      exports.test05 = function() {
      return src(['**/*.js', '!node_modules/'])
      .pipe(dest('output/'))
      }
      // Result : all directories and their .js files in output
      // including node_mudules ones.


      And here's a bonus question. Running the tests, I tried this. But didn't work neither. Why ?



      // --- BONUS QUESTION
      exports.bonus = function() {
      return src(['assets/**/*', '!assets/sub02/**/*', 'assets/sub02/script04.js'])
      .pipe(dest('output/'))
      }

      output
      |-script01.js
      |--sub01
      |-script02.js
      |-script03.js
      |--sub02
      * script04.js missing :( *


      If you want to test it quickly :



      mkdir -p assets assets/sub01 assets/sub02/sub03 output;

      touch assets/script01.js assets/sub01/script02.js assets/sub01/script03.js assets/sub02/script04.js assets/sub02/sub03/script05.js


      Many thanks in advance !





      EDIT



      After further investigation, this works to



      exports.test01 = function() {
      return src(['assets/**/*.js', '!assets/sub02/**/*.js'])
      .pipe(dest('output/'))
      }

      // output
      // |-script01.js
      // |--sub01
      // |-script02.js
      // |-script03.js


      So as I understand it, ** includes assets/sub02 folder as folder.
      So dest copies the folder as folder, except if all the files first selected in src first globs are negated. Any thoughts ?







      gulp src






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 24 '18 at 15:17







      Adrien Euverte

















      asked Nov 24 '18 at 14:14









      Adrien EuverteAdrien Euverte

      2316




      2316
























          0






          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53459045%2fgulp-src-negatives-not-working-as-expected%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53459045%2fgulp-src-negatives-not-working-as-expected%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Create new schema in PostgreSQL using DBeaver

          Deepest pit of an array with Javascript: test on Codility

          Fotorealismo