Skip to content

Commit

Permalink
updated deno version
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarotero committed May 19, 2023
1 parent 15b1443 commit 025f643
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,12 @@ Any BREAKING CHANGE between minor versions will be documented here in upper case
- Cache the remote files using Web Cache API.

### Changed
- `lightningcss` plugin bundlers the CSS code by default (set `includes: false` option to only transform it).
- BREAKING CHANGE: Removed the sync template loader for nunjucks. Use `asyncEach / endeach` and `ifAsync / endif` instead of `for / endfor` and `if / endif` if you need to include templates between these tags.
- The minimum version of Deno supported is `1.33.4`.
- `lightningcss` plugin bundlers the CSS code by default
(set `includes: false` option to only transform it).
- BREAKING CHANGE: Removed the sync template loader for nunjucks.
Use `asyncEach / endeach` and `ifAsync / endif` instead of `for / endfor` and `if / endif`
if you need to include templates between these tags.

### Removed
- The `site.includesLoader` class.
Expand Down
2 changes: 1 addition & 1 deletion core/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export function log(...lines: (string | undefined)[]) {

/** Check the compatibility with the current Deno version */
export function checkDenoVersion(): void {
const minimum = "1.29.0";
const minimum = "1.33.4";
const current = Deno.version.deno;

if (current < minimum) {
Expand Down

0 comments on commit 025f643

Please sign in to comment.