Skip to content

Commit

Permalink
Merge pull request #198 from vim-skk/update_deps
Browse files Browse the repository at this point in the history
Update deps
  • Loading branch information
kuuote authored Jul 23, 2024
2 parents 1791a21 + c2ac33b commit e4d969c
Show file tree
Hide file tree
Showing 11 changed files with 18 additions and 18 deletions.
14 changes: 7 additions & 7 deletions denops/skkeleton/deps.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export * as autocmd from "https://deno.land/x/[email protected].0/autocmd/mod.ts";
export * as fn from "https://deno.land/x/[email protected].0/function/mod.ts";
export { batch } from "https://deno.land/x/[email protected].0/batch/mod.ts";
export type { Denops } from "https://deno.land/x/[email protected].0/mod.ts";
export * as mapping from "https://deno.land/x/[email protected].0/mapping/mod.ts";
export * as vars from "https://deno.land/x/[email protected].0/variable/mod.ts";
export * as op from "https://deno.land/x/[email protected].0/option/mod.ts";
export * as autocmd from "https://deno.land/x/[email protected].1/autocmd/mod.ts";
export * as fn from "https://deno.land/x/[email protected].1/function/mod.ts";
export { batch } from "https://deno.land/x/[email protected].1/batch/mod.ts";
export type { Denops } from "https://deno.land/x/[email protected].1/mod.ts";
export * as mapping from "https://deno.land/x/[email protected].1/mapping/mod.ts";
export * as vars from "https://deno.land/x/[email protected].1/variable/mod.ts";
export * as op from "https://deno.land/x/[email protected].1/option/mod.ts";
2 changes: 1 addition & 1 deletion denops/skkeleton/deps/ddc/filter.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/x/[email protected].0/base/filter.ts";
export * from "https://deno.land/x/[email protected].1/base/filter.ts";
2 changes: 1 addition & 1 deletion denops/skkeleton/deps/ddc/source.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/x/[email protected].0/base/source.ts";
export * from "https://deno.land/x/[email protected].1/base/source.ts";
2 changes: 1 addition & 1 deletion denops/skkeleton/deps/ddc/types.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/x/[email protected].0/types.ts";
export * from "https://deno.land/x/[email protected].1/types.ts";
2 changes: 1 addition & 1 deletion denops/skkeleton/deps/dictionary.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export * as yaml from "jsr:@std/[email protected].1";
export * as yaml from "jsr:@std/[email protected].3";
export * as msgpack from "https://esm.sh/@msgpack/[email protected]";
export { default as jsonschema } from "https://esm.sh/[email protected]";
export { default as jisyoschema } from "https://cdn.jsdelivr.net/gh/skk-dict/jisyo/schema/jisyo.schema.v0.0.0.json" assert { type: "json" };
2 changes: 1 addition & 1 deletion denops/skkeleton/deps/std/assert.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "jsr:@std/assert@0.226.0";
export * from "jsr:@std/assert@1.0.0";
2 changes: 1 addition & 1 deletion denops/skkeleton/deps/std/async.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "jsr:@std/async@0.224.2";
export * from "jsr:@std/async@1.0.0";
2 changes: 1 addition & 1 deletion denops/skkeleton/deps/std/collections.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "jsr:@std/collections@0.224.2";
export * from "jsr:@std/collections@1.0.5";
2 changes: 1 addition & 1 deletion denops/skkeleton/deps/std/path.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "jsr:@std/path@0.225.2";
export * from "jsr:@std/path@1.0.1";
2 changes: 1 addition & 1 deletion denops/skkeleton/deps/std/streams.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { TextLineStream } from "jsr:@std/[email protected].4";
export { TextLineStream } from "jsr:@std/[email protected].5";
4 changes: 2 additions & 2 deletions denops/skkeleton/sources/google_japanese_input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
Source as BaseSource,
} from "../dictionary.ts";
import type { CompletionData } from "../types.ts";
import { deadline, DeadlineError } from "../deps/std/async.ts";
import { deadline } from "../deps/std/async.ts";

export class Source implements BaseSource {
getDictionaries(): Promise<BaseDictionary[]> {
Expand Down Expand Up @@ -44,7 +44,7 @@ export class Dictionary implements BaseDictionary {
const respJson = await resp.json();
return respJson[0][1];
} catch (e) {
if (e instanceof DeadlineError) {
if (e instanceof DOMException) {
// Ignore timeout error
} else if (config.debug) {
console.log(e);
Expand Down

0 comments on commit e4d969c

Please sign in to comment.