Skip to content

Commit

Permalink
everywhere first version
Browse files Browse the repository at this point in the history
  • Loading branch information
Raphael Le Minor authored and Raphael Le Minor committed Apr 24, 2017
1 parent 67bf1e3 commit a2841dc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,7 @@

## 0.8.0 - import
* add support for unnamed import

## 1.0.0 - Everywhere
* works everywhere, all you have to do is typing `./` || `../` || `/` on any file type
* Few unit-tests are now available
2 changes: 1 addition & 1 deletion src/provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ class Provider {
`${actualFilePath}${separator}${path}`;
fs.readdir(searchPath, (err, files) => {
if (err) {
resolve([]);
return resolve([]);
}

let validFiles:string[] = files;
Expand Down

0 comments on commit a2841dc

Please sign in to comment.