Skip to content

Commit

Permalink
chore!: update deps and use jsr. require Deno 1.42.0+
Browse files Browse the repository at this point in the history
  • Loading branch information
kuuote committed May 4, 2024
1 parent 438b9d2 commit 87ad1d1
Show file tree
Hide file tree
Showing 13 changed files with 14 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
# - macos-latest
- ubuntu-latest
version:
- "1.38.5"
- "1.42.0"
- "1.x"
host_version:
- vim: "v9.0.2189"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ See [doc](https://github.com/vim-skk/skkeleton/tree/main/doc/skkeleton.jax)

This plugin is using [denops.vim](https://github.com/vim-denops/denops.vim).

~~Required version is the same as `denops.vim`.~~ Required Deno 1.38.0+ now.
~~Required version is the same as `denops.vim`.~~ Required Deno 1.42.0+ now.

# License

Expand Down
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/ddc_vim@v4.3.1/base/filter.ts";
export * from "https://deno.land/x/ddc_vim@v5.0.0/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/ddc_vim@v4.3.1/base/source.ts";
export * from "https://deno.land/x/ddc_vim@v5.0.0/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/ddc_vim@v4.3.1/types.ts";
export * from "https://deno.land/x/ddc_vim@v5.0.0/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 "https://deno.land/std@0.215.0/yaml/mod.ts";
export * as yaml from "jsr:@std/yaml@0.224.0";
export * as msgpack from "https://esm.sh/@msgpack/msgpack@3.0.0-beta2";
export { default as jsonschema } from "https://esm.sh/jsonschema@1.4.1";
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/encoding_japanese.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * as encoding from "https://esm.sh/encoding-japanese@2.0.0/";
export * as encoding from "https://esm.sh/encoding-japanese@2.1.0/";
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 "https://deno.land/std@0.215.0/assert/mod.ts";
export * from "jsr:@std/assert@0.224.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 "https://deno.land/std@0.215.0/async/mod.ts";
export * from "jsr:@std/async@0.224.0";
4 changes: 1 addition & 3 deletions denops/skkeleton/deps/std/collections.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
export { distinct } from "https://deno.land/std@0.215.0/collections/distinct.ts";
export { distinctBy } from "https://deno.land/std@0.215.0/collections/distinct_by.ts";
export { zip } from "https://deno.land/std@0.215.0/collections/zip.ts";
export * from "jsr:@std/collections@0.224.0";
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 "https://deno.land/std@0.215.0/path/mod.ts";
export * from "jsr:@std/path@0.224.0";
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 "https://deno.land/std@0.215.0/streams/mod.ts";
export { TextLineStream } from "jsr:@std/streams@0.224.0";
4 changes: 2 additions & 2 deletions denops/skkeleton/deps/unknownutil.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export * as u from "https://deno.land/x/unknownutil@v3.16.0/mod.ts";
export { is } from "https://deno.land/x/unknownutil@v3.16.0/mod.ts";
export * as u from "https://deno.land/x/unknownutil@v3.18.0/mod.ts";
export { is } from "https://deno.land/x/unknownutil@v3.18.0/mod.ts";

0 comments on commit 87ad1d1

Please sign in to comment.