-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a3302cf
commit 43e67e9
Showing
5 changed files
with
16 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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({ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"); | ||
|