Skip to content

Commit

Permalink
add lockfile
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret committed Jun 30, 2024
1 parent 6380cd9 commit 4d9c736
Show file tree
Hide file tree
Showing 5 changed files with 237 additions and 4 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
.vscode
npm
deno.lock
6 changes: 5 additions & 1 deletion deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,9 @@
},
"exclude": [
"npm"
]
],
"imports": {
"@deno/dnt": "jsr:@deno/dnt@^0.41.2",
"@std/assert": "jsr:@std/assert@^0.226.0"
}
}
229 changes: 229 additions & 0 deletions deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion mod_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/[email protected]/assert/mod.ts";
import { assertEquals } from "@std/assert";
import { createFromBuffer, createStreaming, Formatter, GlobalConfiguration } from "./mod.ts";

Deno.test("it should create streaming", async () => {
Expand Down
3 changes: 2 additions & 1 deletion scripts/build_npm.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import { build } from "https://deno.land/x/dnt@0.39.0/mod.ts";
import { build } from "@deno/dnt";

await build({
entryPoints: ["mod.ts"],
test: true,
outDir: "./npm",
importMap: "./deno.json",
shims: {
deno: {
test: "dev",
Expand Down

0 comments on commit 4d9c736

Please sign in to comment.