Skip to content

Commit

Permalink
🔖 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
UltiRequiem committed Jul 20, 2022
1 parent 65b9fe7 commit 56ea0b6
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 deletions scripts/node.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
import { buildPackage } from "https://deno.land/x/ultirequiem@0.0.17/node.ts";

buildPackage({
repoName: "@ultirequiem/xkcd",
description: "Interact with the XKCD API.",
homepage: "https://ulti.js.org/xkcd",
keywords: ["xkcd", "comic"],
license: "MIT",
version: "2.0.0",
});
buildPackage(
{
repoName: "@ultirequiem/xkcd",
description: "Interact with the XKCD API.",
homepage: "https://ulti.js.org/xkcd",
keywords: ["xkcd", "comic"],
license: "MIT",
version: "2.1.0",
},
{
entryPoints: ["./mod.ts", { name: "xkcd", path: "./xkcd.ts", kind: "bin" }],
typeCheck: false,
supportCJS: false,
shims: { deno: true, prompts: true },
},
);

0 comments on commit 56ea0b6

Please sign in to comment.