Skip to content

Commit 6cacd17

Browse files
committed
fix(makefile): Minor emoji fix for documentation.
1 parent d790266 commit 6cacd17

4 files changed

Lines changed: 24 additions & 2 deletions

File tree

changelogs/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,15 @@ Feat 011 cla fix (#35)
107107
- Merge branch 'cookiecutter-template' into feat-012
108108
- Update template
109109
- Merge branch 'cookiecutter-template' into feat-012
110+
- Feat 012 (#37)
111+
112+
* feat(build): Updates to documentation makefile.
113+
114+
* fix(cla): Fix for CLA fix for master branch.
115+
- Merge pull request #38 from jcook3701/develop
116+
117+
Feat 012 (#37)
118+
- Merge branch 'develop' into feat-012
110119

111120
### 🐛 Fixed
112121

changelogs/releases/v0.1.1.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,15 @@ Feat 011 cla fix (#35)
107107
- Merge branch 'cookiecutter-template' into feat-012
108108
- Update template
109109
- Merge branch 'cookiecutter-template' into feat-012
110+
- Feat 012 (#37)
111+
112+
* feat(build): Updates to documentation makefile.
113+
114+
* fix(cla): Fix for CLA fix for master branch.
115+
- Merge pull request #38 from jcook3701/develop
116+
117+
Feat 012 (#37)
118+
- Merge branch 'develop' into feat-012
110119

111120
### 🐛 Fixed
112121

{{ cookiecutter.project_slug }}/Gemfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ gem "faraday", "~> 2.14"
55
gem "faraday-retry", "~> 2.3"
66
gem "jekyll", "~> 4.4"
77
gem "just-the-docs", "~> 0.11"
8+
gem "bigdecimal"
9+
gem "csv"
10+
gem "logger"
11+
gem "base64"
812

913
group :jekyll_plugins do
1014
gem "jekyll-seo-tag"

{{ cookiecutter.project_slug }}/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ AUTHOR = "{{ cookiecutter.author }}"
3939
VERSION = "{{ cookiecutter.version }}"
4040
PUBLISHDIR ?=
4141
# --------------------------------------------------
42-
# 📘 Documentation (Sphinx + Jekyll)
42+
# 📚 Documentation (Sphinx + Jekyll)
4343
# --------------------------------------------------
4444
RUBY_INSTALL := bundle install
4545
JEKYLL_BUILD := bundle exec jekyll build --quiet
@@ -60,7 +60,7 @@ ruby-install:
6060
# 📚 Documentation (Jekyll)
6161
# --------------------------------------------------
6262
jekyll:
63-
$(AT)echo "🔨 Building Jekyll site 📘..."
63+
$(AT)echo "🔨 Building Jekyll site 📚..."
6464
$(AT)$(JEKYLL_BUILD)
6565
$(AT)echo "✅ Full documentation build complete!"
6666

0 commit comments

Comments
 (0)