Skip to content

Commit

Permalink
new patch version
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarotero committed Jun 8, 2023
1 parent 3c14d04 commit 6adc790
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,13 @@ and this project try to adheres to [Semantic Versioning](https://semver.org/),
but not always is possible (due the use of unstable features from Deno).
Any BREAKING CHANGE between minor versions will be documented here in upper case.

## [Unreleased]
## [1.17.5] - 2023-06-08
### Fixed
- `Site.copy` now works as expected when given a path with a trailing slash. [#426]
- YAML front matters containing only a comment no longer result in an error.
- YAML front matters containing only a comment no longer result in an error. [#431]
- `@import` to includes folders in SASS plugin.
- File watcher when a new directory is added.
- File watcher enter in an infinite loop in some cases.
- Updated dependencies: `std`, `lightningcss`, `liquidjs`, `postcss`, `preact`, `terser`.

## [1.17.4] - 2023-05-25
Expand Down Expand Up @@ -2262,8 +2263,9 @@ The first version.
[#418]: https://github.com/lumeland/lume/issues/418
[#419]: https://github.com/lumeland/lume/issues/419
[#426]: https://github.com/lumeland/lume/issues/426
[#431]: https://github.com/lumeland/lume/issues/431

[Unreleased]: https://github.com/lumeland/lume/compare/v1.17.4...HEAD
[1.17.5]: https://github.com/lumeland/lume/compare/v1.17.4...v1.17.5
[1.17.4]: https://github.com/lumeland/lume/compare/v1.17.3...v1.17.4
[1.17.3]: https://github.com/lumeland/lume/compare/v1.17.2...v1.17.3
[1.17.2]: https://github.com/lumeland/lume/compare/v1.17.1...v1.17.2
Expand Down
3 changes: 2 additions & 1 deletion core/writer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,8 @@ export default class Writer {
(await entry.getContent(binaryLoader)).content as Uint8Array,
);
} else {
await Deno.copyFile(entry.src, pathTo);
// Copy file https://github.com/denoland/deno/issues/19425
Deno.writeFileSync(pathTo, Deno.readFileSync(entry.src));
}
this.logger.log(
`🔥 ${file.outputPath} <dim>${
Expand Down

0 comments on commit 6adc790

Please sign in to comment.