Skip to content
This repository has been archived by the owner on Nov 21, 2024. It is now read-only.

Commit

Permalink
Merge tag '3.0.0' into develop
Browse files Browse the repository at this point in the history
3.0.0
  • Loading branch information
EndyKaufman committed Jul 16, 2018
2 parents b99fa3f + 90f0e1d commit 7f6fa00
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
@@ -0,0 +1,7 @@
<a name="3.0.0"></a>
## 3.0.0 (2018-07-16)

* First commit



2 changes: 1 addition & 1 deletion src/entity/index_spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ describe('entity', () => {
}, Tree.empty());
tree.getDir('')
.visit(filePath => {
if (basename(filePath) !== 'index.ts') {
if (basename(filePath) !== 'index.ts' && basename(filePath) !== 'package.json') {
const content = tree.readContent(filePath);
const existsContent = readFileSync(
join(rootPath, filePath)
Expand Down
2 changes: 1 addition & 1 deletion src/new/index_spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ describe('new', () => {
}, Tree.empty());
tree.getDir('')
.visit(filePath => {
if (basename(filePath) !== 'index.ts') {
if (basename(filePath) !== 'index.ts' && basename(filePath) !== 'package.json') {
const content = tree.readContent(filePath);
const existsContent = readFileSync(
join(rootPath, filePath)
Expand Down

0 comments on commit 7f6fa00

Please sign in to comment.