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;
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:
- Gulp watches for changes to
gulp-src
, then compiles them to_assets
- Jekyll watches for changes to
_assets
, then compiles them to_site
- 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
tospawn
orexec
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
add a comment |
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:
- Gulp watches for changes to
gulp-src
, then compiles them to_assets
- Jekyll watches for changes to
_assets
, then compiles them to_site
- 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
tospawn
orexec
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
add a comment |
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:
- Gulp watches for changes to
gulp-src
, then compiles them to_assets
- Jekyll watches for changes to
_assets
, then compiles them to_site
- 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
tospawn
orexec
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
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:
- Gulp watches for changes to
gulp-src
, then compiles them to_assets
- Jekyll watches for changes to
_assets
, then compiles them to_site
- 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
tospawn
orexec
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
node.js gulp jekyll
asked Mar 27 at 22:17
RobertAKARobinRobertAKARobin
2,15414 silver badges27 bronze badges
2,15414 silver badges27 bronze badges
add a comment |
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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.
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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