Skip to content

Commit

Permalink
Merge pull request #2 from Comamoca/udd-update
Browse files Browse the repository at this point in the history
Update Deno dependencies
  • Loading branch information
Comamoca authored May 15, 2024
2 parents bbcbc08 + d75fb55 commit c6a33f4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions online.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ export async function main(denops: Denops): Promise<void> {
`;
const deno = "{}";
const deps =
`export { type Denops } from "https://deno.land/x/denops_std@v6.4.2/mod.ts";
export { execute } from "https://deno.land/x/denops_std@v6.4.2/helper/mod.ts";
export { ensure } from "https://deno.land/x/[email protected].0/mod.ts";
export { is } from "https://deno.land/x/[email protected].0/mod.ts";
`export { type Denops } from "https://deno.land/x/denops_std@v6.5.0/mod.ts";
export { execute } from "https://deno.land/x/denops_std@v6.5.0/helper/mod.ts";
export { ensure } from "https://deno.land/x/[email protected].1/mod.ts";
export { is } from "https://deno.land/x/[email protected].1/mod.ts";
`;
console.log("Create directory...");
Deno.mkdir("./denops/plugin", {
Expand Down
6 changes: 3 additions & 3 deletions templates/deps.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const deps = `
export { execute, type Denops } from "https://deno.land/x/denops_std@v6.4.2/helper/mod.ts";
export { ensure } from "https://deno.land/x/[email protected].0/mod.ts";
export { is } from "https://deno.land/x/[email protected].0/mod.ts";
export { execute, type Denops } from "https://deno.land/x/denops_std@v6.5.0/helper/mod.ts";
export { ensure } from "https://deno.land/x/[email protected].1/mod.ts";
export { is } from "https://deno.land/x/[email protected].1/mod.ts";
`;

0 comments on commit c6a33f4

Please sign in to comment.