Skip to content

Commit

Permalink
updated deps
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarotero committed Jun 3, 2024
1 parent a3302cf commit 43e67e9
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ 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/).

## [0.12.7] - Unreleased
### Fixed
- Updated dependencies.

## [0.12.6] - 2024-05-22
### Fixed
- Fix code transformation [#64].
Expand Down Expand Up @@ -225,6 +229,7 @@ First version
[#56]: https://github.com/oscarotero/vento/issues/56
[#64]: https://github.com/oscarotero/vento/issues/64

[0.12.7]: https://github.com/oscarotero/vento/compare/v0.12.6...HEAD
[0.12.6]: https://github.com/oscarotero/vento/compare/v0.12.5...v0.12.6
[0.12.5]: https://github.com/oscarotero/vento/compare/v0.12.4...v0.12.5
[0.12.4]: https://github.com/oscarotero/vento/compare/v0.12.2...v0.12.4
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:[email protected].0";
import { Liquid } from "npm:[email protected].1";
import { Eta } from "https://deno.land/x/[email protected]/src/index.ts";

const env = vento({
Expand Down
8 changes: 6 additions & 2 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,14 @@
"bench": "deno bench --allow-read",
"docs": "cd docs && deno task serve",
"build": "deno run --allow-run=npm --allow-env --allow-sys --allow-read --allow-write --allow-net=deno.land scripts/build_npm.ts",
"update-deps": "rm -rf npm && deno run -A 'https://deno.land/x/[email protected].3/cli.ts' update deno.json **/*.ts"
"update-deps": "rm -rf npm && deno run -A 'https://deno.land/x/[email protected].4/cli.ts' update deno.json **/*.ts"
},
"lock": false,
"fmt": {
"exclude": ["CHANGELOG.md", "npm", "docs"]
"exclude": [
"CHANGELOG.md",
"npm",
"docs"
]
}
}
6 changes: 3 additions & 3 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export * as path from "https://deno.land/[email protected]/path/mod.ts";
export * as html from "https://deno.land/[email protected]/html/mod.ts";
export * as path from "jsr:@std/path@0.224.0";
export * as html from "jsr:@std/html@0.224.0";

export * as astring from "https://deno.land/x/[email protected]/src/astring.js";
export * as meriyah from "npm:[email protected].2";
export * as meriyah from "npm:[email protected].3";
export * as walker from "npm:[email protected]";
export type * as ESTree from "npm:@types/[email protected]";
2 changes: 1 addition & 1 deletion scripts/build_npm.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { build } from "jsr:@deno/[email protected].1";
import { build } from "jsr:@deno/[email protected].2";
import { emptyDir } from "jsr:@std/[email protected]/empty-dir";

await emptyDir("./npm");
Expand Down

0 comments on commit 43e67e9

Please sign in to comment.