Skip to content
This repository has been archived by the owner on Jun 17, 2021. It is now read-only.

Commit

Permalink
Merge branch 'release/1.4.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
Yago committed Jul 19, 2018
2 parents f8ceff8 + 47bd423 commit e2ca3fc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Toolbox Utils - CHANGELOG

*1.4.5* (2018-07-19)
- 🐛 fix broken components dirtree (b3ad176)

*1.4.4* (2018-07-19)
- 🔨 simplify docs tree preparation (6b2b4ec)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "toolbox-utils",
"version": "1.4.4",
"version": "1.4.5",
"description": "Resources for generator-toolbox",
"license": "MIT",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion tasks/prepare.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const prepare = async (done) => {

// Set components types from components/ directory structure
const types = await dirTree(`${config.project}/${config.src}components`);
const dirs = Object.keys(types).slice(1);
const dirs = types.map(type => Object.keys(type)[0]);

const components = {};
const ignoreFiles = ['.gitkeep', '.DS_Store', 'index.md'];
Expand Down

0 comments on commit e2ca3fc

Please sign in to comment.