Skip to content

Commit

Permalink
Merge pull request #6 from frouriojs/develop
Browse files Browse the repository at this point in the history
chore(release): 0.2.2
  • Loading branch information
solufa authored Jun 1, 2020
2 parents 028175d + 9e61208 commit b1083c4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [0.2.2](https://github.com/frouriojs/frourio/compare/v0.2.1...v0.2.2) (2020-06-01)


### Bug Fixes

* exclude dir start with @ ([e25568b](https://github.com/frouriojs/frourio/commit/e25568b21d178835bf4aaf0a4de8d6619cf475ba))

### [0.2.1](https://github.com/frouriojs/frourio/compare/v0.2.0...v0.2.1) (2020-06-01)


Expand Down
2 changes: 1 addition & 1 deletion packages/frourio/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "frourio",
"version": "0.2.1",
"version": "0.2.2",
"description": "Perfectly type-checkable REST framework for TypeScript",
"author": "m-mitsuhide <[email protected]>",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/frourio/src/createControllersText.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export default (inputDir: string) => {

const childrenDirs = fs
.readdirSync(input)
.filter(d => fs.statSync(path.join(input, d)).isDirectory())
.filter(d => fs.statSync(path.join(input, d)).isDirectory() && !d.startsWith('@'))

if (childrenDirs.length) {
result += `,\n${indent}children: {\n`
Expand Down

0 comments on commit b1083c4

Please sign in to comment.