Skip to content
This repository has been archived by the owner on Oct 2, 2020. It is now read-only.

Commit

Permalink
v0.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
L2jLiga committed Jun 24, 2018
1 parent 445b1f8 commit 853dd1e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.6.3]
### Removed
- Useless and anoying logs

## [0.6.2]
### Changed
- Node.js API's
Expand Down Expand Up @@ -185,7 +189,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Add Artboard parser

[Unreleased]: https://github.com/L2jLiga/xd2svg/compare/v0.6.2...HEAD
[Unreleased]: https://github.com/L2jLiga/xd2svg/compare/v0.6.3...HEAD
[0.6.2]: https://github.com/L2jLiga/xd2svg/compare/v0.6.2...v0.6.3
[0.6.2]: https://github.com/L2jLiga/xd2svg/compare/v0.6.1...v0.6.2
[0.6.1]: https://github.com/L2jLiga/xd2svg/compare/v0.6.0...v0.6.1
[0.6.0]: https://github.com/L2jLiga/xd2svg/compare/v0.5.0...v0.6.0
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": "xd2svg",
"version": "0.6.2",
"version": "0.6.3",
"description": "Utility for converting Adobe XD files (*.xd) to SVG",
"keywords": [
"svg",
Expand Down
2 changes: 0 additions & 2 deletions src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,6 @@ if (inputFileName) {
}, '.');
}

console.log(Object.keys(svgImages));

typeof svgImages === 'string' ?
writeFile(options.output, svgImages, errorHandler)
: Object.keys(svgImages).map((key) => writeFile(`${options.output}/${key}.${options.format}`, svgImages[key], errorHandler));
Expand Down

0 comments on commit 853dd1e

Please sign in to comment.