

Directory Structure for Jekyll / GitHub Pages with Babel
source link: https://theblog.github.io/post/jekyll-github-pages-gulp-babel-directory-structure/
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

Directory Structure for Jekyll
- Jekyll is the most popular static site generator.
- GitHub Pages hosts your jekyll sites for free under *.github.io.
- Gulp lets you automate your build process (minifying .css files, concatenating all .js files etc.).
- Babel lets you write ES6 (cool new JavaScript) even though not all browsers support it by transpiling it into ES5 (lame old JavaScript).
I switched to using Jekyll for this blog yesterday and I love it. There are blog posts describing how to combine a subset of the above, but I could not find one for combining all four. However, each of these four components brings its own peculiarities to consider, so no blog post worked out of the box. Here is the solution that I ended up with:
Result
I created a boilerplate repository for GitHub Pages with Gulp and Babel set up.
Usage
- Fork the repo
- Run
npm install
in the root directory to install Gulp and Babel locally. - Run
gulp jekyll
to build the site with Babel and serve it with Jekyll afterwards. Visit http://localhost:4000 to see the blog.
Development
The master
branch should only be used for deploying (see considerations below). For development, switch to the dev
branch. After implementing your changes, test them by running gulp jekyll
and visiting http://localhost:4000.
If you are happy, checkout the master
branch, merge the dev
branch, run gulp
to build the site into the project's root directory and push / deploy the new build to the master
branch on GitHub.
Note: You can skip Babel during development by changing source: _dist
to source: src
and running jekyll serve
in the root directory.
Directory Structure
See the Jekyll docs for an explanation of the files and directories.
On master
.
├── _layouts // built by gulp
├── _posts // built by gulp
├── js // built by gulp
| ├── main.js // transpiled by Babel
├── index.html // built by gulp
├── src
| ├── _layouts
| ├── _posts
| ├── js
| ├── main.js // in ES6
| ├── index.html
├── _config.yml
├── gulpfile.js
├── package.json
├── README.md
├── .gitignore
On dev
.
├── _dist // built by gulp
| ├── _layouts
| ├── _posts
| ├── js
| ├── main.js // transpiled by Babel
| ├── index.html
├── src
| ├── _layouts
| ├── _posts
| ├── js
| ├── main.js // in ES6
| ├── index.html
├── _config.yml
├── gulpfile.js
├── package.json
├── README.md
├── .gitignore
Considerations
- Running Babel for transpiling the ES6 files into ES5 before each deployment of the site is not practical, so a build tool like Gulp that runs Babel automatically is a must.
- There is a jekyll-babel Jekyll plugin but you have to start each .js file with exactly
WebStorm does not like that and formats it wrongly every time. If you try to escape that block with---
---// @formatter:off
, the Jekyll plugin won't work anymore. Also, it is a bit dirty to mess with the .js files. If I want to directly run them during development, they will error. So, Babel has to be called by Gulp. - Babel will generate the transpiled .js files somewhere. I don't want these files to mingle with the actual source .js files - that would cause confusion. So, using a
src
and a_dist
directory (ignored by git) would be clean. Jekyll can then generate the static site in_site
by using the files in_dist
. - You have to commit all files that Jekyll needs to the
master
branch on GitHub. So_dist
must not be ignored by git. At the same time it is generated code so it should be ignored. A solution is to ignore_dist
on thedev
branch. Then, merge thedev
branch to themaster
branch, run Gulp and push the new_dist
to the GitHubmaster
branch. - For running Jekyll on the
_dist
directory, you would have to specifysource: _dist
in Jekyll's_config.yml
. However, GitHub overrides thesource
setting, which you cannot change (GitHub docs). So Jekyll's source directory has to be the repo's top level directory (for username.github.io pages). You also must commit the page to themaster
branch. The solution is to keep thesource: _dist
setting for thedev
branch, but let gulp build the site into the root directory on themaster
branch (docs).
Drawbacks
- On
master
, Gulp cannot clean the build directory before building because it is the project's root directory. - You have to go to
master
, build and push for every deployment of the site. Thegulp-gh-pages
gulp plugin might help with that. - On
master
, I had to change_config.yml
andgulpfile.js
to make Gulp build into the root directory. Thus, changes to these files indev
will have to be merged manually with master.
Recommend
About Joyk
Aggregate valuable and interesting links.
Joyk means Joy of geeK