Skip to content

Commit

Permalink
1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
CarlosOrozco88 committed Aug 2, 2021
1 parent d0a42a2 commit d06e252
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 18 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.0.4 (28-07-2021)

- Delete dist folder bug solved

## 1.0.3 (28-07-2021)

- Chokidar bug solved
Expand Down
23 changes: 7 additions & 16 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "ui5-tools",
"displayName": "UI5 Tools",
"description": "Local development tools for UI5",
"version": "1.0.3",
"version": "1.0.4",
"publisher": "carlosorozcojimenez",
"author": "Carlos Orozco Jiménez <carlos.orozco.jimenez@gmail.com>",
"contributors": [
Expand Down
4 changes: 3 additions & 1 deletion src/Builder/Builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -294,11 +294,13 @@ export default {
useTrash: true,
});
} catch (error) {
if (error.code !== FileSystemError.FileNotFound) {
Log.logBuilder(error.code);
if (error.code !== 'FileNotFound') {
throw new Error(error);
}
}
}
Log.logBuilder('ok');
return true;
},

Expand Down

0 comments on commit d06e252

Please sign in to comment.