Jekyll doesn't regenerate assets when they are changed by another processLocal post assets with Jekyll“jekyll serve --watch” doesn't regenerate automaticallyWebpack force re-render (re-build, re-compile) via CLI webpack toolUpdating main.scss file if one of the imports is changedgulp “no such file or directory” or “file already exists” when not running tasks separatelyutf-8 files changed to windows-1252 when ftp'd to serverSetting up vue and laravel troubleNode - An @import loop has been foundGulp watch not working for app.css/app.scssWhy is my Sass not showing up when using Gulp?

How to understand payment due date for credit card?

Can a Sorcerer use the Careful Spell Metamagic option on spells with optional saving throws?

Does Dovescape counter Enchantment Creatures?

Necessity of tenure for lifetime academic research

How can I observe Sgr A* with itelescope.net

Do manacles provide any sort of in-game mechanical effect or condition?

Journal published a paper, ignoring my objections as a referee

What is Soda Fountain Etiquette?

Why doesn't Starship have four landing legs?

What checks exist against overuse of presidential pardons in the USA?

Count the number of triangles

Could a complex system of reaction wheels be used to propel a spacecraft?

Why military weather satellites?

Get contents before a colon

Can a network vulnerability be exploited locally?

Heat output from a 200W electric radiator?

Inspiration for failed idea?

Is the Amazon rainforest the "world's lungs"?

What should be done with the carbon when using magic to get oxygen from carbon dioxide?

RAID0 instead of RAID1 or 5, is this crazy?

Generic method to call API functions with simple retrial on errors

Why do motor drives have multiple bus capacitors of small value capacitance instead of a single bus capacitor of large value?

How do I portray irrational anger in first person?

Why didn't Doc believe Marty was from the future?



Jekyll doesn't regenerate assets when they are changed by another process


Local post assets with Jekyll“jekyll serve --watch” doesn't regenerate automaticallyWebpack force re-render (re-build, re-compile) via CLI webpack toolUpdating main.scss file if one of the imports is changedgulp “no such file or directory” or “file already exists” when not running tasks separatelyutf-8 files changed to windows-1252 when ftp'd to serverSetting up vue and laravel troubleNode - An @import loop has been foundGulp watch not working for app.css/app.scssWhy is my Sass not showing up when using Gulp?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I'm using Gulp and Jekyll. My file structure is like this:



_config.yml
gulpfile.js
gulp-src/
css/
main.scss
_partial.scss
js/
main.js
_partial.js
_assets/
css/
main.css
js/
main.js
_site/


The intended flow is:



  1. Gulp watches for changes to gulp-src, then compiles them to _assets

  2. Jekyll watches for changes to _assets, then compiles them to _site

  3. Jekyll serves the contents of _site

I run bundle exec jekyll serve --watch --force-polling & npx gulp start.



The problem is Jekyll does not consistently regenerate after Gulp builds the contents of _assets.



  • If I manually change _assets/css/main.css, then Jekyll updates.


  • If I manually change gulp-src/css/main.scss, which causes Gulp to change _assets/css/main.scss, then Jekyll updates.


  • If I manually change gulp-src/css/_partial.scss, which causes Gulp to change _assets/css/main.scss, then sometimes Jekyll updates and sometimes it doesn't.


This also occurs when:



  • I use jekyll serve --force-polling

  • I use Node's child_process to spawn or exec Jekyll

  • I make changes to JS files in the same way

The "sometimes" leads me to think this is a race condition. Thoughts on how to avoid this? (The easy answer is to make jekyll build part of my Gulp flow, and to use a different server, but I'd like to know the answer anyway.)










share|improve this question






























    0















    I'm using Gulp and Jekyll. My file structure is like this:



    _config.yml
    gulpfile.js
    gulp-src/
    css/
    main.scss
    _partial.scss
    js/
    main.js
    _partial.js
    _assets/
    css/
    main.css
    js/
    main.js
    _site/


    The intended flow is:



    1. Gulp watches for changes to gulp-src, then compiles them to _assets

    2. Jekyll watches for changes to _assets, then compiles them to _site

    3. Jekyll serves the contents of _site

    I run bundle exec jekyll serve --watch --force-polling & npx gulp start.



    The problem is Jekyll does not consistently regenerate after Gulp builds the contents of _assets.



    • If I manually change _assets/css/main.css, then Jekyll updates.


    • If I manually change gulp-src/css/main.scss, which causes Gulp to change _assets/css/main.scss, then Jekyll updates.


    • If I manually change gulp-src/css/_partial.scss, which causes Gulp to change _assets/css/main.scss, then sometimes Jekyll updates and sometimes it doesn't.


    This also occurs when:



    • I use jekyll serve --force-polling

    • I use Node's child_process to spawn or exec Jekyll

    • I make changes to JS files in the same way

    The "sometimes" leads me to think this is a race condition. Thoughts on how to avoid this? (The easy answer is to make jekyll build part of my Gulp flow, and to use a different server, but I'd like to know the answer anyway.)










    share|improve this question


























      0












      0








      0








      I'm using Gulp and Jekyll. My file structure is like this:



      _config.yml
      gulpfile.js
      gulp-src/
      css/
      main.scss
      _partial.scss
      js/
      main.js
      _partial.js
      _assets/
      css/
      main.css
      js/
      main.js
      _site/


      The intended flow is:



      1. Gulp watches for changes to gulp-src, then compiles them to _assets

      2. Jekyll watches for changes to _assets, then compiles them to _site

      3. Jekyll serves the contents of _site

      I run bundle exec jekyll serve --watch --force-polling & npx gulp start.



      The problem is Jekyll does not consistently regenerate after Gulp builds the contents of _assets.



      • If I manually change _assets/css/main.css, then Jekyll updates.


      • If I manually change gulp-src/css/main.scss, which causes Gulp to change _assets/css/main.scss, then Jekyll updates.


      • If I manually change gulp-src/css/_partial.scss, which causes Gulp to change _assets/css/main.scss, then sometimes Jekyll updates and sometimes it doesn't.


      This also occurs when:



      • I use jekyll serve --force-polling

      • I use Node's child_process to spawn or exec Jekyll

      • I make changes to JS files in the same way

      The "sometimes" leads me to think this is a race condition. Thoughts on how to avoid this? (The easy answer is to make jekyll build part of my Gulp flow, and to use a different server, but I'd like to know the answer anyway.)










      share|improve this question














      I'm using Gulp and Jekyll. My file structure is like this:



      _config.yml
      gulpfile.js
      gulp-src/
      css/
      main.scss
      _partial.scss
      js/
      main.js
      _partial.js
      _assets/
      css/
      main.css
      js/
      main.js
      _site/


      The intended flow is:



      1. Gulp watches for changes to gulp-src, then compiles them to _assets

      2. Jekyll watches for changes to _assets, then compiles them to _site

      3. Jekyll serves the contents of _site

      I run bundle exec jekyll serve --watch --force-polling & npx gulp start.



      The problem is Jekyll does not consistently regenerate after Gulp builds the contents of _assets.



      • If I manually change _assets/css/main.css, then Jekyll updates.


      • If I manually change gulp-src/css/main.scss, which causes Gulp to change _assets/css/main.scss, then Jekyll updates.


      • If I manually change gulp-src/css/_partial.scss, which causes Gulp to change _assets/css/main.scss, then sometimes Jekyll updates and sometimes it doesn't.


      This also occurs when:



      • I use jekyll serve --force-polling

      • I use Node's child_process to spawn or exec Jekyll

      • I make changes to JS files in the same way

      The "sometimes" leads me to think this is a race condition. Thoughts on how to avoid this? (The easy answer is to make jekyll build part of my Gulp flow, and to use a different server, but I'd like to know the answer anyway.)







      node.js gulp jekyll






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 27 at 22:17









      RobertAKARobinRobertAKARobin

      2,15414 silver badges27 bronze badges




      2,15414 silver badges27 bronze badges

























          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%2f55387322%2fjekyll-doesnt-regenerate-assets-when-they-are-changed-by-another-process%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




          Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







          Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.



















          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%2f55387322%2fjekyll-doesnt-regenerate-assets-when-they-are-changed-by-another-process%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

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

          Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript