Skip to content

Commit

Permalink
release patch
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarotero committed Jan 13, 2025
1 parent 7afcfb9 commit 7eb5a6d
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [1.12.15] - 2025-01-13
### Fixed
- Property destruct [#92], [#93]
- Updated depepencies.

## [1.12.14] - 2024-12-23
### Fixed
- Removed redundant error message [#90].
Expand Down Expand Up @@ -285,7 +290,10 @@ First version
[#88]: https://github.com/oscarotero/vento/issues/88
[#89]: https://github.com/oscarotero/vento/issues/89
[#90]: https://github.com/oscarotero/vento/issues/90
[#92]: https://github.com/oscarotero/vento/issues/92
[#93]: https://github.com/oscarotero/vento/issues/93

[1.12.15]: https://github.com/oscarotero/vento/compare/v1.12.14...v1.12.15
[1.12.14]: https://github.com/oscarotero/vento/compare/v1.12.13...v1.12.14
[1.12.13]: https://github.com/oscarotero/vento/compare/v1.12.12...v1.12.13
[1.12.12]: https://github.com/oscarotero/vento/compare/v1.12.11...v1.12.12
Expand Down
2 changes: 1 addition & 1 deletion _scripts/build_npm.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { build } from "jsr:@deno/[email protected]";
import { emptyDir } from "jsr:@std/[email protected].8/empty-dir";
import { emptyDir } from "jsr:@std/[email protected].9/empty-dir";

await emptyDir("./_npm");

Expand Down
2 changes: 1 addition & 1 deletion bench/bench.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import vento from "../mod.ts";
import nunjucks from "npm:[email protected]";
import { Liquid } from "npm:liquidjs@10.19.1";
import { Liquid } from "npm:liquidjs@10.20.1";
import { Eta } from "https://deno.land/x/[email protected]/src/index.ts";

const env = vento({
Expand Down
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"docs": "cd docs && deno task serve",
"build-npm": "deno run --allow-run=npm --allow-env --allow-sys --allow-read --allow-write --allow-net=jsr.io,deno.land _scripts/build_npm.ts",
"build-jsr": "deno run -A https://deno.land/x/[email protected]/mod.ts --name=@vento/vento",
"update-deps": "rm -rf npm && deno run -A 'https://deno.land/x/[email protected].8/cli.ts' update deno.json **/*.ts"
"update-deps": "rm -rf npm && deno run -A 'https://deno.land/x/[email protected].9/cli.ts' update deno.json **/*.ts"
},
"lock": false,
"fmt": {
Expand Down
2 changes: 1 addition & 1 deletion deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ export * as path from "jsr:@std/[email protected]";
export * as html from "jsr:@std/[email protected]";

export * as astring from "jsr:@davidbonnet/[email protected]";
export * as meriyah from "npm:[email protected].3";
export * as meriyah from "npm:[email protected].5";
export * as walker from "npm:[email protected]";
export type * as ESTree from "npm:@types/[email protected]";

0 comments on commit 7eb5a6d

Please sign in to comment.