Skip to content

Commit

Permalink
Release v4.0.0
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Nov 5, 2024
1 parent ebeb2a5 commit ab495b2
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 36 deletions.
11 changes: 0 additions & 11 deletions .changeset/pre.json

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/red-stingrays-cross.md

This file was deleted.

17 changes: 0 additions & 17 deletions .changeset/stupid-bats-occur.md

This file was deleted.

24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# eleventy-plugin-vento

## 4.0.0

### Major Changes

- fc80b5f: Removed ignore tag `{{! ... }}` syntax. As mentioned in the 3.3.0 release notes, the now preferred way to "pass through" tags is with string literals.

You should update code with `{{! ... }}` to be `{{ '{{ }}' }}` like so:

```diff
- {{! if condition }}
+ {{ '{{ if condition }}' }}
do something
- {{! /if }}
- {{ '{{ /if }}' }}
```

While more verbose, this change ensures that there isn't any ambiguity between a tag that needs ignoring and JS negation expressions.

### Minor Changes

- 2b5f337: Rewrite project in Typescript and add a build/packaging step for releases and testing.

These changes also include `.d.ts` generation as part of the build step. If you're using `11ty.ts`'s `defineConfig` function, it will pick the types from this plugin up automatically. (resolves #22)

## 4.0.0-beta.0

### Major Changes
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": "eleventy-plugin-vento",
"version": "4.0.0-beta.0",
"version": "4.0.0",
"description": "Adds support for the Vento templating language to Eleventy.",
"type": "module",
"engines": {
Expand Down

0 comments on commit ab495b2

Please sign in to comment.