Skip to content

Commit cc540f7

Browse files
committed
📦 Update Deno dependencies
Update dependencies by udd: /home/runner/work/deno-denops-std/deno-denops-std/README.md /home/runner/work/deno-denops-std/deno-denops-std/scripts/gen-function/utils.ts [1/1] Looking for releases: https://deno.land/std@0.160.0/streams/mod.ts [1/1] Attempting update: https://deno.land/std@0.160.0/streams/mod.ts -> 0.167.0 [1/1] Update successful: https://deno.land/std@0.160.0/streams/mod.ts -> 0.167.0 /home/runner/work/deno-denops-std/deno-denops-std/scripts/gen-function/parse.ts /home/runner/work/deno-denops-std/deno-denops-std/scripts/gen-function/format.ts [1/1] Looking for releases: https://deno.land/x/denops_core@v3.2.0/mod.ts [1/1] Attempting update: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 [1/1] Update successful: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/scripts/gen-function/gen-function.ts [1/3] Looking for releases: https://deno.land/x/set_operations@v1.0.3/mod.ts [1/3] Attempting update: https://deno.land/x/set_operations@v1.0.3/mod.ts -> v1.1.0 [1/3] Update successful: https://deno.land/x/set_operations@v1.0.3/mod.ts -> v1.1.0 [2/3] Looking for releases: https://deno.land/std@0.160.0/path/mod.ts [2/3] Attempting update: https://deno.land/std@0.160.0/path/mod.ts -> 0.167.0 [2/3] Update successful: https://deno.land/std@0.160.0/path/mod.ts -> 0.167.0 [3/3] Looking for releases: https://raw.githubusercontent.com/vim/vim/v/runtime/doc/eval.txthttps://raw.githubusercontent.com/vim/vim/v/runtime/doc/textprop.txthttps://raw.githubusercontent.com/vim/vim/v/runtime/doc/terminal.txthttps://raw.githubusercontent.com/vim/vim/v/runtime/doc/channel.txthttps://raw.githubusercontent.com/vim/vim/v/runtime/doc/testing.txtDownload from https://raw.githubusercontent.com/neovim/neovim/v/runtime/doc/eval.txthttps://raw.githubusercontent.com/neovim/neovim/v/runtime/doc/api.txtDownload from , , , , , ]; for (const vimHelpDownloadUrl of vimHelpDownloadUrls) { console.log(); } const vimHelps = await Promise.all(vimHelpDownloadUrls.map(downloadString)); const vimDefs = vimHelps.map(parse).flat(); const vimFnSet = difference(new Set(vimDefs.map((def) => def.fn)), manualFnSet); const nvimHelpDownloadUrls = [ , , ]; for (const nvimHelpDownloadUrl of nvimHelpDownloadUrls) { console.log(); } const nvimHelps = await Promise.all(nvimHelpDownloadUrls.map(downloadString)); const nvimDefs = nvimHelps.map(parse).flat(); const nvimFnSet = difference( new Set(nvimDefs.map((def) => def.fn)), manualFnSet, ); const commonFnSet = intersection(vimFnSet, nvimFnSet); const vimOnlyFnSet = difference(vimFnSet, nvimFnSet); const nvimOnlyFnSet = difference(nvimFnSet, vimFnSet); const commonCode = format( vimDefs.filter((def) => commonFnSet.has(def.fn)), ); const vimOnlyCode = format( vimDefs.filter((def) => vimOnlyFnSet.has(def.fn)), ); const nvimOnlyCode = format( nvimDefs.filter((def) => nvimOnlyFnSet.has(def.fn)), ); await Deno.writeTextFile( path.fromFileUrl( new URL( /home/runner/work/deno-denops-std/deno-denops-std/scripts/gen-function/types.ts /home/runner/work/deno-denops-std/deno-denops-std/scripts/gen-option/utils.ts [1/1] Looking for releases: https://deno.land/std@0.160.0/streams/mod.ts [1/1] Attempting update: https://deno.land/std@0.160.0/streams/mod.ts -> 0.167.0 [1/1] Update successful: https://deno.land/std@0.160.0/streams/mod.ts -> 0.167.0 /home/runner/work/deno-denops-std/deno-denops-std/scripts/gen-option/parse.ts /home/runner/work/deno-denops-std/deno-denops-std/scripts/gen-option/gen-option.ts [1/3] Looking for releases: https://deno.land/x/set_operations@v1.0.3/mod.ts [1/3] Attempting update: https://deno.land/x/set_operations@v1.0.3/mod.ts -> v1.1.0 [1/3] Update successful: https://deno.land/x/set_operations@v1.0.3/mod.ts -> v1.1.0 [2/3] Looking for releases: https://deno.land/std@0.160.0/path/mod.ts [2/3] Attempting update: https://deno.land/std@0.160.0/path/mod.ts -> 0.167.0 [2/3] Update successful: https://deno.land/std@0.160.0/path/mod.ts -> 0.167.0 [3/3] Looking for releases: https://raw.githubusercontent.com/vim/vim/v/runtime/doc/options.txtDownload from https://raw.githubusercontent.com/neovim/neovim/v/runtime/doc/options.txtDownload from , ]; for (const vimHelpDownloadUrl of vimHelpDownloadUrls) { console.log(); } const vimHelps = await Promise.all(vimHelpDownloadUrls.map(downloadString)); const vimDefs = vimHelps.map(parse).flat(); const vimOptionSet = difference( new Set(vimDefs.map((def) => def.name)), manualOptionSet, ); const nvimHelpDownloadUrls = [ , ]; for (const nvimHelpDownloadUrl of nvimHelpDownloadUrls) { console.log(); } const nvimHelps = await Promise.all(nvimHelpDownloadUrls.map(downloadString)); const nvimDefs = nvimHelps.map(parse).flat(); const nvimOptionSet = difference( new Set(nvimDefs.map((def) => def.name)), manualOptionSet, ); const commonOptionSet = intersection(vimOptionSet, nvimOptionSet); const vimOnlyOptionSet = difference(vimOptionSet, nvimOptionSet); const nvimOnlyOptionSet = difference(nvimOptionSet, vimOptionSet); const commonCode = format( vimDefs.filter((def) => commonOptionSet.has(def.name)), /home/runner/work/deno-denops-std/deno-denops-std/scripts/gen-option/format.ts [1/1] Looking for releases: https://deno.land/x/denops_core@v3.2.0/mod.ts [1/1] Attempting update: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 [1/1] Update successful: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/scripts/gen-option/types.ts /home/runner/work/deno-denops-std/deno-denops-std/denops_std/function/input.ts [1/1] Looking for releases: https://deno.land/x/denops_core@v3.2.0/mod.ts [1/1] Attempting update: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 [1/1] Update successful: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/function/input_test.ts [1/2] Looking for releases: https://deno.land/std@0.160.0/testing/asserts.ts [1/2] Attempting update: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [1/2] Update successful: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [2/2] Looking for releases: https://deno.land/x/denops_core@v3.2.0/test/mod.ts [2/2] Attempting update: https://deno.land/x/denops_core@v3.2.0/test/mod.ts -> v3.2.2 [2/2] Update successful: https://deno.land/x/denops_core@v3.2.0/test/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/function/README.md /home/runner/work/deno-denops-std/deno-denops-std/denops_std/function/vim/_generated.ts [1/1] Looking for releases: https://deno.land/x/denops_core@v3.2.0/mod.ts [1/1] Attempting update: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 [1/1] Update successful: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/function/vim/mod.ts /home/runner/work/deno-denops-std/deno-denops-std/denops_std/function/vim/_manual.ts /home/runner/work/deno-denops-std/deno-denops-std/denops_std/function/buffer.ts [1/1] Looking for releases: https://deno.land/x/denops_core@v3.2.0/mod.ts [1/1] Attempting update: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 [1/1] Update successful: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/function/_generated.ts [1/1] Looking for releases: https://deno.land/x/denops_core@v3.2.0/mod.ts [1/1] Attempting update: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 [1/1] Update successful: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/function/mod.ts /home/runner/work/deno-denops-std/deno-denops-std/denops_std/function/nvim/_generated.ts [1/1] Looking for releases: https://deno.land/x/denops_core@v3.2.0/mod.ts [1/1] Attempting update: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 [1/1] Update successful: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/function/nvim/mod.ts /home/runner/work/deno-denops-std/deno-denops-std/denops_std/function/nvim/_manual.ts /home/runner/work/deno-denops-std/deno-denops-std/denops_std/function/various.ts [1/1] Looking for releases: https://deno.land/x/denops_core@v3.2.0/mod.ts [1/1] Attempting update: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 [1/1] Update successful: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/function/cursor_test.ts [1/3] Looking for releases: https://deno.land/std@0.160.0/testing/asserts.ts [1/3] Attempting update: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [1/3] Update successful: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [2/3] Looking for releases: https://deno.land/x/unknownutil@v2.0.0/mod.ts [2/3] Attempting update: https://deno.land/x/unknownutil@v2.0.0/mod.ts -> v2.1.0 [2/3] Update successful: https://deno.land/x/unknownutil@v2.0.0/mod.ts -> v2.1.0 [3/3] Looking for releases: https://deno.land/x/denops_core@v3.2.0/test/mod.ts [3/3] Attempting update: https://deno.land/x/denops_core@v3.2.0/test/mod.ts -> v3.2.2 [3/3] Update successful: https://deno.land/x/denops_core@v3.2.0/test/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/function/_manual.ts /home/runner/work/deno-denops-std/deno-denops-std/denops_std/function/cursor.ts [1/1] Looking for releases: https://deno.land/x/denops_core@v3.2.0/mod.ts [1/1] Attempting update: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 [1/1] Update successful: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/function/types.ts [1/1] Looking for releases: https://deno.land/x/unknownutil@v2.0.0/mod.ts [1/1] Attempting update: https://deno.land/x/unknownutil@v2.0.0/mod.ts -> v2.1.0 [1/1] Update successful: https://deno.land/x/unknownutil@v2.0.0/mod.ts -> v2.1.0 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/function/common.ts [1/1] Looking for releases: https://deno.land/x/denops_core@v3.2.0/mod.ts [1/1] Attempting update: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 [1/1] Update successful: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/function/various_test.ts [1/2] Looking for releases: https://deno.land/std@0.160.0/testing/asserts.ts [1/2] Attempting update: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [1/2] Update successful: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [2/2] Looking for releases: https://deno.land/x/denops_core@v3.2.0/test/mod.ts [2/2] Attempting update: https://deno.land/x/denops_core@v3.2.0/test/mod.ts -> v3.2.2 [2/2] Update successful: https://deno.land/x/denops_core@v3.2.0/test/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/README.md /home/runner/work/deno-denops-std/deno-denops-std/denops_std/test/mod.ts [1/2] Looking for releases: https://deno.land/x/denops_core@v3.2.0/test/mod.ts [1/2] Attempting update: https://deno.land/x/denops_core@v3.2.0/test/mod.ts -> v3.2.2 [1/2] Update successful: https://deno.land/x/denops_core@v3.2.0/test/mod.ts -> v3.2.2 [2/2] Looking for releases: https://deno.land/x/denops_core@v3.2.0/test/mod.ts [2/2] Attempting update: https://deno.land/x/denops_core@v3.2.0/test/mod.ts -> v3.2.2 [2/2] Update successful: https://deno.land/x/denops_core@v3.2.0/test/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/anonymous/mod_test.ts [1/2] Looking for releases: https://deno.land/std@0.160.0/testing/asserts.ts [1/2] Attempting update: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [1/2] Update successful: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [2/2] Looking for releases: https://deno.land/x/denops_core@v3.2.0/test/mod.ts [2/2] Attempting update: https://deno.land/x/denops_core@v3.2.0/test/mod.ts -> v3.2.2 [2/2] Update successful: https://deno.land/x/denops_core@v3.2.0/test/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/anonymous/README.md /home/runner/work/deno-denops-std/deno-denops-std/denops_std/anonymous/mod.ts [1/1] Looking for releases: https://deno.land/x/denops_core@v3.2.0/mod.ts [1/1] Attempting update: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 [1/1] Update successful: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/batch/README.md /home/runner/work/deno-denops-std/deno-denops-std/denops_std/batch/batch.ts [1/1] Looking for releases: https://deno.land/x/denops_core@v3.2.0/mod.ts [1/1] Attempting update: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 [1/1] Update successful: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/batch/mod.ts /home/runner/work/deno-denops-std/deno-denops-std/denops_std/batch/batch_test.ts [1/3] Looking for releases: https://deno.land/std@0.160.0/testing/asserts.ts [1/3] Attempting update: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [1/3] Update successful: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [2/3] Looking for releases: https://deno.land/std@0.160.0/testing/mock.ts [2/3] Attempting update: https://deno.land/std@0.160.0/testing/mock.ts -> 0.167.0 [2/3] Update successful: https://deno.land/std@0.160.0/testing/mock.ts -> 0.167.0 [3/3] Looking for releases: https://deno.land/x/denops_core@v3.2.0/test/mod.ts [3/3] Attempting update: https://deno.land/x/denops_core@v3.2.0/test/mod.ts -> v3.2.2 [3/3] Update successful: https://deno.land/x/denops_core@v3.2.0/test/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/batch/gather.ts [1/1] Looking for releases: https://deno.land/x/denops_core@v3.2.0/mod.ts [1/1] Attempting update: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 [1/1] Update successful: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/batch/gather_test.ts [1/2] Looking for releases: https://deno.land/std@0.160.0/testing/asserts.ts [1/2] Attempting update: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [1/2] Update successful: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [2/2] Looking for releases: https://deno.land/x/denops_core@v3.2.0/test/mod.ts [2/2] Attempting update: https://deno.land/x/denops_core@v3.2.0/test/mod.ts -> v3.2.2 [2/2] Update successful: https://deno.land/x/denops_core@v3.2.0/test/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/util.ts /home/runner/work/deno-denops-std/deno-denops-std/denops_std/buffer/README.md /home/runner/work/deno-denops-std/deno-denops-std/denops_std/buffer/decoration.ts [1/3] Looking for releases: https://deno.land/x/denops_core@v3.2.0/mod.ts [1/3] Attempting update: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 [1/3] Update successful: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 [2/3] Looking for releases: https://deno.land/x/itertools@v1.0.2/mod.ts [2/3] Attempting update: https://deno.land/x/itertools@v1.0.2/mod.ts -> v1.1.0 [2/3] Update successful: https://deno.land/x/itertools@v1.0.2/mod.ts -> v1.1.0 [3/3] Looking for releases: https://deno.land/x/unreachable@v0.1.0/mod.ts [3/3] Using latest: https://deno.land/x/unreachable@v0.1.0/mod.ts /home/runner/work/deno-denops-std/deno-denops-std/denops_std/buffer/buffer.ts [1/2] Looking for releases: https://deno.land/x/denops_core@v3.2.0/mod.ts [1/2] Attempting update: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 [1/2] Update successful: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 [2/2] Looking for releases: https://deno.land/x/unknownutil@v2.0.0/mod.ts [2/2] Attempting update: https://deno.land/x/unknownutil@v2.0.0/mod.ts -> v2.1.0 [2/2] Update successful: https://deno.land/x/unknownutil@v2.0.0/mod.ts -> v2.1.0 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/buffer/fileformat_test.ts [1/1] Looking for releases: https://deno.land/std@0.160.0/testing/asserts.ts [1/1] Attempting update: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [1/1] Update successful: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/buffer/mod.ts /home/runner/work/deno-denops-std/deno-denops-std/denops_std/buffer/buffer_test.ts [1/2] Looking for releases: https://deno.land/std@0.160.0/testing/asserts.ts [1/2] Attempting update: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [1/2] Update successful: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [2/2] Looking for releases: https://cdn.skypack.dev/encoding-japanese@2.0.0/ [2/2] Using latest: https://cdn.skypack.dev/encoding-japanese@2.0.0/ /home/runner/work/deno-denops-std/deno-denops-std/denops_std/buffer/fileencoding_test.ts [1/2] Looking for releases: https://deno.land/std@0.160.0/testing/asserts.ts [1/2] Attempting update: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [1/2] Update successful: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [2/2] Looking for releases: https://cdn.skypack.dev/encoding-japanese@2.0.0/ [2/2] Using latest: https://cdn.skypack.dev/encoding-japanese@2.0.0/ /home/runner/work/deno-denops-std/deno-denops-std/denops_std/buffer/fileformat.ts [1/1] Looking for releases: https://deno.land/x/unknownutil@v2.0.0/mod.ts [1/1] Attempting update: https://deno.land/x/unknownutil@v2.0.0/mod.ts -> v2.1.0 [1/1] Update successful: https://deno.land/x/unknownutil@v2.0.0/mod.ts -> v2.1.0 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/buffer/fileencoding.ts /home/runner/work/deno-denops-std/deno-denops-std/denops_std/autocmd/README.md /home/runner/work/deno-denops-std/deno-denops-std/denops_std/autocmd/common_test.ts [1/2] Looking for releases: https://deno.land/std@0.160.0/testing/asserts.ts [1/2] Attempting update: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [1/2] Update successful: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [2/2] Looking for releases: https://deno.land/x/denops_core@v3.2.0/test/mod.ts [2/2] Attempting update: https://deno.land/x/denops_core@v3.2.0/test/mod.ts -> v3.2.2 [2/2] Update successful: https://deno.land/x/denops_core@v3.2.0/test/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/autocmd/group.ts [1/1] Looking for releases: https://deno.land/x/denops_core@v3.2.0/mod.ts [1/1] Attempting update: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 [1/1] Update successful: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/autocmd/mod.ts /home/runner/work/deno-denops-std/deno-denops-std/denops_std/autocmd/group_test.ts [1/2] Looking for releases: https://deno.land/std@0.160.0/testing/asserts.ts [1/2] Attempting update: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [1/2] Update successful: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [2/2] Looking for releases: https://deno.land/x/denops_core@v3.2.0/test/mod.ts [2/2] Attempting update: https://deno.land/x/denops_core@v3.2.0/test/mod.ts -> v3.2.2 [2/2] Update successful: https://deno.land/x/denops_core@v3.2.0/test/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/autocmd/types.ts /home/runner/work/deno-denops-std/deno-denops-std/denops_std/autocmd/common.ts [1/1] Looking for releases: https://deno.land/x/denops_core@v3.2.0/mod.ts [1/1] Attempting update: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 [1/1] Update successful: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/mod.ts [1/1] Looking for releases: https://deno.land/x/denops_core@v3.2.0/mod.ts [1/1] Attempting update: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 [1/1] Update successful: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/argument/mod_test.ts [1/1] Looking for releases: https://deno.land/std@0.160.0/testing/asserts.ts [1/1] Attempting update: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [1/1] Update successful: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/argument/opts.ts /home/runner/work/deno-denops-std/deno-denops-std/denops_std/argument/README.md /home/runner/work/deno-denops-std/deno-denops-std/denops_std/argument/util.ts /home/runner/work/deno-denops-std/deno-denops-std/denops_std/argument/flags.ts /home/runner/work/deno-denops-std/deno-denops-std/denops_std/argument/mod.ts /home/runner/work/deno-denops-std/deno-denops-std/denops_std/argument/opts_test.ts [1/1] Looking for releases: https://deno.land/std@0.160.0/testing/asserts.ts [1/1] Attempting update: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [1/1] Update successful: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/argument/flags_test.ts [1/1] Looking for releases: https://deno.land/std@0.160.0/testing/asserts.ts [1/1] Attempting update: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [1/1] Update successful: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/bufname/utils.ts /home/runner/work/deno-denops-std/deno-denops-std/denops_std/bufname/bufname.ts /home/runner/work/deno-denops-std/deno-denops-std/denops_std/bufname/README.md /home/runner/work/deno-denops-std/deno-denops-std/denops_std/bufname/mod.ts /home/runner/work/deno-denops-std/deno-denops-std/denops_std/bufname/utils_test.ts [1/1] Looking for releases: https://deno.land/std@0.160.0/testing/asserts.ts [1/1] Attempting update: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [1/1] Update successful: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/bufname/bufname_test.ts [1/2] Looking for releases: https://deno.land/std@0.160.0/testing/asserts.ts [1/2] Attempting update: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [1/2] Update successful: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [2/2] Looking for releases: https://deno.land/std@0.160.0/path/mod.ts [2/2] Attempting update: https://deno.land/std@0.160.0/path/mod.ts -> 0.167.0 [2/2] Update successful: https://deno.land/std@0.160.0/path/mod.ts -> 0.167.0 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/helper/echo.ts [1/1] Looking for releases: https://deno.land/x/denops_core@v3.2.0/mod.ts [1/1] Attempting update: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 [1/1] Update successful: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/helper/input.ts [1/2] Looking for releases: https://deno.land/x/denops_core@v3.2.0/mod.ts [1/2] Attempting update: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 [1/2] Update successful: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 [2/2] Looking for releases: https://deno.land/x/unknownutil@v2.0.0/mod.ts [2/2] Attempting update: https://deno.land/x/unknownutil@v2.0.0/mod.ts -> v2.1.0 [2/2] Update successful: https://deno.land/x/unknownutil@v2.0.0/mod.ts -> v2.1.0 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/helper/input_test.ts [1/2] Looking for releases: https://deno.land/std@0.160.0/testing/asserts.ts [1/2] Attempting update: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [1/2] Update successful: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [2/2] Looking for releases: https://deno.land/x/denops_core@v3.2.0/test/mod.ts [2/2] Attempting update: https://deno.land/x/denops_core@v3.2.0/test/mod.ts -> v3.2.2 [2/2] Update successful: https://deno.land/x/denops_core@v3.2.0/test/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/helper/README.md /home/runner/work/deno-denops-std/deno-denops-std/denops_std/helper/execute.ts [1/1] Looking for releases: https://deno.land/x/denops_core@v3.2.0/mod.ts [1/1] Attempting update: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 [1/1] Update successful: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/helper/load_test.ts [1/3] Looking for releases: https://deno.land/std@0.160.0/testing/asserts.ts [1/3] Attempting update: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [1/3] Update successful: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [2/3] Looking for releases: https://deno.land/x/denops_core@v3.2.0/test/mod.ts [2/3] Attempting update: https://deno.land/x/denops_core@v3.2.0/test/mod.ts -> v3.2.2 [2/3] Update successful: https://deno.land/x/denops_core@v3.2.0/test/mod.ts -> v3.2.2 [3/3] Looking for releases: https://raw.githubusercontent.com/vim-denops/deno-denops-std/v1.9.1/denops_std/helper/#= [3/3] Using latest: https://raw.githubusercontent.com/vim-denops/deno-denops-std/v1.9.1/denops_std/helper/#= /home/runner/work/deno-denops-std/deno-denops-std/denops_std/helper/batch.ts [1/1] Looking for releases: https://deno.land/x/denops_core@v3.2.0/mod.ts [1/1] Attempting update: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 [1/1] Update successful: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/helper/echo_test.ts [1/1] Looking for releases: https://deno.land/x/denops_core@v3.2.0/test/mod.ts [1/1] Attempting update: https://deno.land/x/denops_core@v3.2.0/test/mod.ts -> v3.2.2 [1/1] Update successful: https://deno.land/x/denops_core@v3.2.0/test/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/helper/execute_test.ts [1/2] Looking for releases: https://deno.land/std@0.160.0/testing/asserts.ts [1/2] Attempting update: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [1/2] Update successful: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [2/2] Looking for releases: https://deno.land/x/denops_core@v3.2.0/test/mod.ts [2/2] Attempting update: https://deno.land/x/denops_core@v3.2.0/test/mod.ts -> v3.2.2 [2/2] Update successful: https://deno.land/x/denops_core@v3.2.0/test/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/helper/mod.ts /home/runner/work/deno-denops-std/deno-denops-std/denops_std/helper/batch_test.ts [1/2] Looking for releases: https://deno.land/std@0.160.0/testing/asserts.ts [1/2] Attempting update: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [1/2] Update successful: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [2/2] Looking for releases: https://deno.land/x/denops_core@v3.2.0/test/mod.ts [2/2] Attempting update: https://deno.land/x/denops_core@v3.2.0/test/mod.ts -> v3.2.2 [2/2] Update successful: https://deno.land/x/denops_core@v3.2.0/test/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/helper/load.ts [1/4] Looking for releases: https://deno.land/x/denops_core@v3.2.0/mod.ts [1/4] Attempting update: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 [1/4] Update successful: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 [2/4] Looking for releases: https://deno.land/std@0.160.0/fs/mod.ts [2/4] Attempting update: https://deno.land/std@0.160.0/fs/mod.ts -> 0.167.0 [2/4] Update successful: https://deno.land/std@0.160.0/fs/mod.ts -> 0.167.0 [3/4] Looking for releases: https://deno.land/std@0.160.0/hash/mod.ts [3/4] Attempting update: https://deno.land/std@0.160.0/hash/mod.ts -> 0.167.0 [3/4] Update successful: https://deno.land/std@0.160.0/hash/mod.ts -> 0.167.0 [4/4] Looking for releases: https://deno.land/std@0.160.0/path/mod.ts [4/4] Attempting update: https://deno.land/std@0.160.0/path/mod.ts -> 0.167.0 [4/4] Update successful: https://deno.land/std@0.160.0/path/mod.ts -> 0.167.0 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/variable/variable_test.ts [1/2] Looking for releases: https://deno.land/std@0.160.0/testing/asserts.ts [1/2] Attempting update: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [1/2] Update successful: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [2/2] Looking for releases: https://deno.land/x/denops_core@v3.2.0/test/mod.ts [2/2] Attempting update: https://deno.land/x/denops_core@v3.2.0/test/mod.ts -> v3.2.2 [2/2] Update successful: https://deno.land/x/denops_core@v3.2.0/test/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/variable/register.ts [1/1] Looking for releases: https://deno.land/x/denops_core@v3.2.0/mod.ts [1/1] Attempting update: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 [1/1] Update successful: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/variable/README.md /home/runner/work/deno-denops-std/deno-denops-std/denops_std/variable/environment_test.ts [1/2] Looking for releases: https://deno.land/std@0.160.0/testing/asserts.ts [1/2] Attempting update: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [1/2] Update successful: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [2/2] Looking for releases: https://deno.land/x/denops_core@v3.2.0/test/mod.ts [2/2] Attempting update: https://deno.land/x/denops_core@v3.2.0/test/mod.ts -> v3.2.2 [2/2] Update successful: https://deno.land/x/denops_core@v3.2.0/test/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/variable/mod.ts /home/runner/work/deno-denops-std/deno-denops-std/denops_std/variable/option.ts [1/1] Looking for releases: https://deno.land/x/denops_core@v3.2.0/mod.ts [1/1] Attempting update: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 [1/1] Update successful: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/variable/environment.ts [1/1] Looking for releases: https://deno.land/x/denops_core@v3.2.0/mod.ts [1/1] Attempting update: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 [1/1] Update successful: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/variable/variable.ts [1/1] Looking for releases: https://deno.land/x/denops_core@v3.2.0/mod.ts [1/1] Attempting update: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 [1/1] Update successful: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/variable/option_test.ts [1/2] Looking for releases: https://deno.land/std@0.160.0/testing/asserts.ts [1/2] Attempting update: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [1/2] Update successful: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [2/2] Looking for releases: https://deno.land/x/denops_core@v3.2.0/test/mod.ts [2/2] Attempting update: https://deno.land/x/denops_core@v3.2.0/test/mod.ts -> v3.2.2 [2/2] Update successful: https://deno.land/x/denops_core@v3.2.0/test/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/variable/register_test.ts [1/2] Looking for releases: https://deno.land/std@0.160.0/testing/asserts.ts [1/2] Attempting update: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [1/2] Update successful: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [2/2] Looking for releases: https://deno.land/x/denops_core@v3.2.0/test/mod.ts [2/2] Attempting update: https://deno.land/x/denops_core@v3.2.0/test/mod.ts -> v3.2.2 [2/2] Update successful: https://deno.land/x/denops_core@v3.2.0/test/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/variable/types.ts [1/1] Looking for releases: https://deno.land/x/denops_core@v3.2.0/mod.ts [1/1] Attempting update: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 [1/1] Update successful: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/mapping/mod_test.ts [1/3] Looking for releases: https://deno.land/x/denops_core@v3.2.0/mod.ts [1/3] Attempting update: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 [1/3] Update successful: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 [2/3] Looking for releases: https://deno.land/std@0.160.0/testing/asserts.ts [2/3] Attempting update: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [2/3] Update successful: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [3/3] Looking for releases: https://deno.land/x/denops_core@v3.2.0/test/mod.ts [3/3] Attempting update: https://deno.land/x/denops_core@v3.2.0/test/mod.ts -> v3.2.2 [3/3] Update successful: https://deno.land/x/denops_core@v3.2.0/test/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/mapping/README.md /home/runner/work/deno-denops-std/deno-denops-std/denops_std/mapping/parser.ts /home/runner/work/deno-denops-std/deno-denops-std/denops_std/mapping/parser_test.ts [1/1] Looking for releases: https://deno.land/std@0.160.0/testing/asserts.ts [1/1] Attempting update: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 [1/1] Update successful: https://deno.land/std@0.160.0/testing/asserts.ts -> 0.167.0 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/mapping/mod.ts [1/1] Looking for releases: https://deno.land/x/denops_core@v3.2.0/mod.ts [1/1] Attempting update: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 [1/1] Update successful: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/mapping/types.ts /home/runner/work/deno-denops-std/deno-denops-std/denops_std/option/README.md /home/runner/work/deno-denops-std/deno-denops-std/denops_std/option/vim/_generated.ts [1/1] Looking for releases: https://deno.land/x/denops_core@v3.2.0/mod.ts [1/1] Attempting update: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 [1/1] Update successful: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/option/vim/mod.ts /home/runner/work/deno-denops-std/deno-denops-std/denops_std/option/vim/_manual.ts /home/runner/work/deno-denops-std/deno-denops-std/denops_std/option/_generated.ts [1/1] Looking for releases: https://deno.land/x/denops_core@v3.2.0/mod.ts [1/1] Attempting update: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 [1/1] Update successful: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/option/mod.ts /home/runner/work/deno-denops-std/deno-denops-std/denops_std/option/nvim/_generated.ts [1/1] Looking for releases: https://deno.land/x/denops_core@v3.2.0/mod.ts [1/1] Attempting update: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 [1/1] Update successful: https://deno.land/x/denops_core@v3.2.0/mod.ts -> v3.2.2 /home/runner/work/deno-denops-std/deno-denops-std/denops_std/option/nvim/mod.ts /home/runner/work/deno-denops-std/deno-denops-std/denops_std/option/nvim/_manual.ts /home/runner/work/deno-denops-std/deno-denops-std/denops_std/option/_manual.ts Already latest version: https://raw.githubusercontent.com/vim/vim/v/runtime/doc/eval.txthttps://raw.githubusercontent.com/vim/vim/v/runtime/doc/textprop.txthttps://raw.githubusercontent.com/vim/vim/v/runtime/doc/terminal.txthttps://raw.githubusercontent.com/vim/vim/v/runtime/doc/channel.txthttps://raw.githubusercontent.com/vim/vim/v/runtime/doc/testing.txtDownload from https://raw.githubusercontent.com/neovim/neovim/v/runtime/doc/eval.txthttps://raw.githubusercontent.com/neovim/neovim/v/runtime/doc/api.txtDownload from , ]; for (const vimHelpDownloadUrl of vimHelpDownloadUrls) { console.log(); } const vimHelps = await Promise.all(vimHelpDownloadUrls.map(downloadString)); const vimDefs = vimHelps.map(parse).flat(); const vimOptionSet = difference( new Set(vimDefs.map((def) => def.name)), manualOptionSet, ); const nvimHelpDownloadUrls = [ , ]; for (const nvimHelpDownloadUrl of nvimHelpDownloadUrls) { console.log(); } const nvimHelps = await Promise.all(nvimHelpDownloadUrls.map(downloadString)); const nvimDefs = nvimHelps.map(parse).flat(); const nvimOptionSet = difference( new Set(nvimDefs.map((def) => def.name)), manualOptionSet, ); const commonOptionSet = intersection(vimOptionSet, nvimOptionSet); const vimOnlyOptionSet = difference(vimOptionSet, nvimOptionSet); const nvimOnlyOptionSet = difference(nvimOptionSet, vimOptionSet); const commonCode = format( vimDefs.filter((def) => commonOptionSet.has(def.name)), == v https://deno.land/x/unreachable@v0.1.0/mod.ts == v0.1.0 https://cdn.skypack.dev/encoding-japanese@2.0.0/ == 2.0.0 https://cdn.skypack.dev/encoding-japanese@2.0.0/ == 2.0.0 https://raw.githubusercontent.com/vim-denops/deno-denops-std/v1.9.1/denops_std/helper/#= == v1.9.1 Successfully updated: https://deno.land/std@0.160.0/streams/mod.ts 0.160.0 -> 0.167.0 https://deno.land/x/denops_core@v3.2.0/mod.ts v3.2.0 -> v3.2.2 https://deno.land/x/set_operations@v1.0.3/mod.ts v1.0.3 -> v1.1.0 https://deno.land/std@0.160.0/path/mod.ts 0.160.0 -> 0.167.0 https://deno.land/std@0.160.0/streams/mod.ts 0.160.0 -> 0.167.0 https://deno.land/x/set_operations@v1.0.3/mod.ts v1.0.3 -> v1.1.0 https://deno.land/std@0.160.0/path/mod.ts 0.160.0 -> 0.167.0 https://deno.land/x/denops_core@v3.2.0/mod.ts v3.2.0 -> v3.2.2 https://deno.land/x/denops_core@v3.2.0/mod.ts v3.2.0 -> v3.2.2 https://deno.land/std@0.160.0/testing/asserts.ts 0.160.0 -> 0.167.0 https://deno.land/x/denops_core@v3.2.0/test/mod.ts v3.2.0 -> v3.2.2 https://deno.land/x/denops_core@v3.2.0/mod.ts v3.2.0 -> v3.2.2 https://deno.land/x/denops_core@v3.2.0/mod.ts v3.2.0 -> v3.2.2 https://deno.land/x/denops_core@v3.2.0/mod.ts v3.2.0 -> v3.2.2 https://deno.land/x/denops_core@v3.2.0/mod.ts v3.2.0 -> v3.2.2 https://deno.land/x/denops_core@v3.2.0/mod.ts v3.2.0 -> v3.2.2 https://deno.land/std@0.160.0/testing/asserts.ts 0.160.0 -> 0.167.0 https://deno.land/x/unknownutil@v2.0.0/mod.ts v2.0.0 -> v2.1.0 https://deno.land/x/denops_core@v3.2.0/test/mod.ts v3.2.0 -> v3.2.2 https://deno.land/x/denops_core@v3.2.0/mod.ts v3.2.0 -> v3.2.2 https://deno.land/x/unknownutil@v2.0.0/mod.ts v2.0.0 -> v2.1.0 https://deno.land/x/denops_core@v3.2.0/mod.ts v3.2.0 -> v3.2.2 https://deno.land/std@0.160.0/testing/asserts.ts 0.160.0 -> 0.167.0 https://deno.land/x/denops_core@v3.2.0/test/mod.ts v3.2.0 -> v3.2.2 https://deno.land/x/denops_core@v3.2.0/test/mod.ts v3.2.0 -> v3.2.2 https://deno.land/x/denops_core@v3.2.0/test/mod.ts v3.2.0 -> v3.2.2 https://deno.land/std@0.160.0/testing/asserts.ts 0.160.0 -> 0.167.0 https://deno.land/x/denops_core@v3.2.0/test/mod.ts v3.2.0 -> v3.2.2 https://deno.land/x/denops_core@v3.2.0/mod.ts v3.2.0 -> v3.2.2 https://deno.land/x/denops_core@v3.2.0/mod.ts v3.2.0 -> v3.2.2 https://deno.land/std@0.160.0/testing/asserts.ts 0.160.0 -> 0.167.0 https://deno.land/std@0.160.0/testing/mock.ts 0.160.0 -> 0.167.0 https://deno.land/x/denops_core@v3.2.0/test/mod.ts v3.2.0 -> v3.2.2 https://deno.land/x/denops_core@v3.2.0/mod.ts v3.2.0 -> v3.2.2 https://deno.land/std@0.160.0/testing/asserts.ts 0.160.0 -> 0.167.0 https://deno.land/x/denops_core@v3.2.0/test/mod.ts v3.2.0 -> v3.2.2 https://deno.land/x/denops_core@v3.2.0/mod.ts v3.2.0 -> v3.2.2 https://deno.land/x/itertools@v1.0.2/mod.ts v1.0.2 -> v1.1.0 https://deno.land/x/denops_core@v3.2.0/mod.ts v3.2.0 -> v3.2.2 https://deno.land/x/unknownutil@v2.0.0/mod.ts v2.0.0 -> v2.1.0 https://deno.land/std@0.160.0/testing/asserts.ts 0.160.0 -> 0.167.0 https://deno.land/std@0.160.0/testing/asserts.ts 0.160.0 -> 0.167.0 https://deno.land/std@0.160.0/testing/asserts.ts 0.160.0 -> 0.167.0 https://deno.land/x/unknownutil@v2.0.0/mod.ts v2.0.0 -> v2.1.0 https://deno.land/std@0.160.0/testing/asserts.ts 0.160.0 -> 0.167.0 https://deno.land/x/denops_core@v3.2.0/test/mod.ts v3.2.0 -> v3.2.2 https://deno.land/x/denops_core@v3.2.0/mod.ts v3.2.0 -> v3.2.2 https://deno.land/std@0.160.0/testing/asserts.ts 0.160.0 -> 0.167.0 https://deno.land/x/denops_core@v3.2.0/test/mod.ts v3.2.0 -> v3.2.2 https://deno.land/x/denops_core@v3.2.0/mod.ts v3.2.0 -> v3.2.2 https://deno.land/x/denops_core@v3.2.0/mod.ts v3.2.0 -> v3.2.2 https://deno.land/std@0.160.0/testing/asserts.ts 0.160.0 -> 0.167.0 https://deno.land/std@0.160.0/testing/asserts.ts 0.160.0 -> 0.167.0 https://deno.land/std@0.160.0/testing/asserts.ts 0.160.0 -> 0.167.0 https://deno.land/std@0.160.0/testing/asserts.ts 0.160.0 -> 0.167.0 https://deno.land/std@0.160.0/testing/asserts.ts 0.160.0 -> 0.167.0 https://deno.land/std@0.160.0/path/mod.ts 0.160.0 -> 0.167.0 https://deno.land/x/denops_core@v3.2.0/mod.ts v3.2.0 -> v3.2.2 https://deno.land/x/denops_core@v3.2.0/mod.ts v3.2.0 -> v3.2.2 https://deno.land/x/unknownutil@v2.0.0/mod.ts v2.0.0 -> v2.1.0 https://deno.land/std@0.160.0/testing/asserts.ts 0.160.0 -> 0.167.0 https://deno.land/x/denops_core@v3.2.0/test/mod.ts v3.2.0 -> v3.2.2 https://deno.land/x/denops_core@v3.2.0/mod.ts v3.2.0 -> v3.2.2 https://deno.land/std@0.160.0/testing/asserts.ts 0.160.0 -> 0.167.0 https://deno.land/x/denops_core@v3.2.0/test/mod.ts v3.2.0 -> v3.2.2 https://deno.land/x/denops_core@v3.2.0/mod.ts v3.2.0 -> v3.2.2 https://deno.land/x/denops_core@v3.2.0/test/mod.ts v3.2.0 -> v3.2.2 https://deno.land/std@0.160.0/testing/asserts.ts 0.160.0 -> 0.167.0 https://deno.land/x/denops_core@v3.2.0/test/mod.ts v3.2.0 -> v3.2.2 https://deno.land/std@0.160.0/testing/asserts.ts 0.160.0 -> 0.167.0 https://deno.land/x/denops_core@v3.2.0/test/mod.ts v3.2.0 -> v3.2.2 https://deno.land/x/denops_core@v3.2.0/mod.ts v3.2.0 -> v3.2.2 https://deno.land/std@0.160.0/fs/mod.ts 0.160.0 -> 0.167.0 https://deno.land/std@0.160.0/hash/mod.ts 0.160.0 -> 0.167.0 https://deno.land/std@0.160.0/path/mod.ts 0.160.0 -> 0.167.0 https://deno.land/std@0.160.0/testing/asserts.ts 0.160.0 -> 0.167.0 https://deno.land/x/denops_core@v3.2.0/test/mod.ts v3.2.0 -> v3.2.2 https://deno.land/x/denops_core@v3.2.0/mod.ts v3.2.0 -> v3.2.2 https://deno.land/std@0.160.0/testing/asserts.ts 0.160.0 -> 0.167.0 https://deno.land/x/denops_core@v3.2.0/test/mod.ts v3.2.0 -> v3.2.2 https://deno.land/x/denops_core@v3.2.0/mod.ts v3.2.0 -> v3.2.2 https://deno.land/x/denops_core@v3.2.0/mod.ts v3.2.0 -> v3.2.2 https://deno.land/x/denops_core@v3.2.0/mod.ts v3.2.0 -> v3.2.2 https://deno.land/std@0.160.0/testing/asserts.ts 0.160.0 -> 0.167.0 https://deno.land/x/denops_core@v3.2.0/test/mod.ts v3.2.0 -> v3.2.2 https://deno.land/std@0.160.0/testing/asserts.ts 0.160.0 -> 0.167.0 https://deno.land/x/denops_core@v3.2.0/test/mod.ts v3.2.0 -> v3.2.2 https://deno.land/x/denops_core@v3.2.0/mod.ts v3.2.0 -> v3.2.2 https://deno.land/x/denops_core@v3.2.0/mod.ts v3.2.0 -> v3.2.2 https://deno.land/std@0.160.0/testing/asserts.ts 0.160.0 -> 0.167.0 https://deno.land/x/denops_core@v3.2.0/test/mod.ts v3.2.0 -> v3.2.2 https://deno.land/std@0.160.0/testing/asserts.ts 0.160.0 -> 0.167.0 https://deno.land/x/denops_core@v3.2.0/mod.ts v3.2.0 -> v3.2.2 https://deno.land/x/denops_core@v3.2.0/mod.ts v3.2.0 -> v3.2.2 https://deno.land/x/denops_core@v3.2.0/mod.ts v3.2.0 -> v3.2.2 https://deno.land/x/denops_core@v3.2.0/mod.ts v3.2.0 -> v3.2.2 make[1]: Entering directory '/home/runner/work/deno-denops-std/deno-denops-std' make[1]: Leaving directory '/home/runner/work/deno-denops-std/deno-denops-std'
1 parent 203c3c8 commit cc540f7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+95
-95
lines changed

denops_std/anonymous/mod.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { Denops } from "https://deno.land/x/denops_core@v3.2.0/mod.ts";
1+
import type { Denops } from "https://deno.land/x/denops_core@v3.2.2/mod.ts";
22

33
// https://github.com/microsoft/TypeScript/issues/26223#issuecomment-674500430
44
export type TupleOf<T, N extends number> = N extends N

denops_std/anonymous/mod_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import {
22
assertEquals,
33
assertRejects,
4-
} from "https://deno.land/std@0.160.0/testing/asserts.ts";
5-
import { test } from "https://deno.land/x/denops_core@v3.2.0/test/mod.ts";
4+
} from "https://deno.land/std@0.167.0/testing/asserts.ts";
5+
import { test } from "https://deno.land/x/denops_core@v3.2.2/test/mod.ts";
66
import * as anonymous from "./mod.ts";
77

88
test({

denops_std/argument/flags_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.160.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.167.0/testing/asserts.ts";
22
import { parseFlags } from "./flags.ts";
33

44
Deno.test("parseFlags", () => {

denops_std/argument/mod_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.160.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.167.0/testing/asserts.ts";
22
import { parse } from "./mod.ts";
33

44
Deno.test("parse", () => {

denops_std/argument/opts_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.160.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.167.0/testing/asserts.ts";
22
import { parseOpts } from "./opts.ts";
33

44
Deno.test("parseOpts", () => {

denops_std/autocmd/common.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Denops } from "https://deno.land/x/denops_core@v3.2.0/mod.ts";
1+
import { Denops } from "https://deno.land/x/denops_core@v3.2.2/mod.ts";
22
import { AutocmdEvent } from "./types.ts";
33

44
type CommonOptions = {

denops_std/autocmd/common_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { assertEquals } from "https://deno.land/std@0.160.0/testing/asserts.ts";
2-
import { test } from "https://deno.land/x/denops_core@v3.2.0/test/mod.ts";
1+
import { assertEquals } from "https://deno.land/std@0.167.0/testing/asserts.ts";
2+
import { test } from "https://deno.land/x/denops_core@v3.2.2/test/mod.ts";
33
import { globals } from "../variable/mod.ts";
44
import { define, emit, emitAll, list, remove } from "./common.ts";
55

denops_std/autocmd/group.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { Denops } from "https://deno.land/x/denops_core@v3.2.0/mod.ts";
1+
import type { Denops } from "https://deno.land/x/denops_core@v3.2.2/mod.ts";
22
import { execute } from "../helper/execute.ts";
33
import { AutocmdEvent } from "./types.ts";
44
import {

denops_std/autocmd/group_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { assertEquals } from "https://deno.land/std@0.160.0/testing/asserts.ts";
2-
import { test } from "https://deno.land/x/denops_core@v3.2.0/test/mod.ts";
1+
import { assertEquals } from "https://deno.land/std@0.167.0/testing/asserts.ts";
2+
import { test } from "https://deno.land/x/denops_core@v3.2.2/test/mod.ts";
33
import { globals } from "../variable/mod.ts";
44
import { group } from "./group.ts";
55

denops_std/batch/batch.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import type {
33
Denops,
44
Dispatcher,
55
Meta,
6-
} from "https://deno.land/x/denops_core@v3.2.0/mod.ts";
6+
} from "https://deno.land/x/denops_core@v3.2.2/mod.ts";
77

88
type Redraw = undefined | boolean;
99

denops_std/batch/batch_test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import { assertEquals } from "https://deno.land/std@0.160.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.167.0/testing/asserts.ts";
22
import {
33
assertSpyCall,
44
assertSpyCalls,
55
spy,
6-
} from "https://deno.land/std@0.160.0/testing/mock.ts";
7-
import { test } from "https://deno.land/x/denops_core@v3.2.0/test/mod.ts";
6+
} from "https://deno.land/std@0.167.0/testing/mock.ts";
7+
import { test } from "https://deno.land/x/denops_core@v3.2.2/test/mod.ts";
88
import { batch, BatchHelper } from "./batch.ts";
99

1010
test({

denops_std/batch/gather.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import type {
33
Denops,
44
Dispatcher,
55
Meta,
6-
} from "https://deno.land/x/denops_core@v3.2.0/mod.ts";
6+
} from "https://deno.land/x/denops_core@v3.2.2/mod.ts";
77

88
class GatherHelper implements Denops {
99
#denops: Denops;

denops_std/batch/gather_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import {
22
assertEquals,
33
assertRejects,
4-
} from "https://deno.land/std@0.160.0/testing/asserts.ts";
5-
import { test } from "https://deno.land/x/denops_core@v3.2.0/test/mod.ts";
4+
} from "https://deno.land/std@0.167.0/testing/asserts.ts";
5+
import { test } from "https://deno.land/x/denops_core@v3.2.2/test/mod.ts";
66
import { gather, GatherHelper } from "./gather.ts";
77

88
test({

denops_std/buffer/buffer.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import type { Denops } from "https://deno.land/x/denops_core@v3.2.0/mod.ts";
1+
import type { Denops } from "https://deno.land/x/denops_core@v3.2.2/mod.ts";
22
import * as autocmd from "../autocmd/mod.ts";
33
import * as batch from "../batch/mod.ts";
44
import * as fn from "../function/mod.ts";
55
import { execute } from "../helper/mod.ts";
6-
import * as unknownutil from "https://deno.land/x/unknownutil@v2.0.0/mod.ts";
6+
import * as unknownutil from "https://deno.land/x/unknownutil@v2.1.0/mod.ts";
77
import {
88
assertFileFormat,
99
FileFormat,

denops_std/buffer/buffer_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.160.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.167.0/testing/asserts.ts";
22
import { test } from "../test/mod.ts";
33
import { default as Encoding } from "https://cdn.skypack.dev/encoding-japanese@2.0.0/";
44
import * as fn from "../function/mod.ts";

denops_std/buffer/decoration.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import type { Denops } from "https://deno.land/x/denops_core@v3.2.0/mod.ts";
1+
import type { Denops } from "https://deno.land/x/denops_core@v3.2.2/mod.ts";
22
import * as batch from "../batch/mod.ts";
33
import * as vimFn from "../function/vim/mod.ts";
44
import * as nvimFn from "../function/nvim/mod.ts";
5-
import * as itertools from "https://deno.land/x/itertools@v1.0.2/mod.ts";
5+
import * as itertools from "https://deno.land/x/itertools@v1.1.0/mod.ts";
66
import { unreachable } from "https://deno.land/x/unreachable@v0.1.0/mod.ts";
77

88
const cacheKey = Symbol("denops_std/buffer/decoration/vimDecorate/rs");

denops_std/buffer/fileencoding_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.160.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.167.0/testing/asserts.ts";
22
import { default as Encoding } from "https://cdn.skypack.dev/encoding-japanese@2.0.0/";
33
import { tryDecode } from "./fileencoding.ts";
44

denops_std/buffer/fileformat.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as unknownutil from "https://deno.land/x/unknownutil@v2.0.0/mod.ts";
1+
import * as unknownutil from "https://deno.land/x/unknownutil@v2.1.0/mod.ts";
22

33
export type FileFormat = "unix" | "dos" | "mac";
44

denops_std/buffer/fileformat_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.160.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.167.0/testing/asserts.ts";
22
import { FileFormat, findFileFormat, splitText } from "./fileformat.ts";
33

44
Deno.test("splitText", async (t) => {

denops_std/bufname/bufname_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import {
22
assertEquals,
33
assertThrows,
4-
} from "https://deno.land/std@0.160.0/testing/asserts.ts";
5-
import * as path from "https://deno.land/std@0.160.0/path/mod.ts";
4+
} from "https://deno.land/std@0.167.0/testing/asserts.ts";
5+
import * as path from "https://deno.land/std@0.167.0/path/mod.ts";
66
import { format, parse } from "./bufname.ts";
77

88
Deno.test("format throws exception when 'scheme' contains unusable characters", () => {

denops_std/bufname/utils_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.160.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.167.0/testing/asserts.ts";
22
import { decode, encode } from "./utils.ts";
33

44
Deno.test("encode does nothing on alphabet characters", () => {

denops_std/function/_generated.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// NOTE: This file is generated. Do NOT modify it manually.
22
// deno-lint-ignore-file camelcase
3-
import type { Denops } from "https://deno.land/x/denops_core@v3.2.0/mod.ts";
3+
import type { Denops } from "https://deno.land/x/denops_core@v3.2.2/mod.ts";
44

55
/**
66
* Return the absolute value of {expr}. When {expr} evaluates to

denops_std/function/buffer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { Denops } from "https://deno.land/x/denops_core@v3.2.0/mod.ts";
1+
import type { Denops } from "https://deno.land/x/denops_core@v3.2.2/mod.ts";
22

33
/**
44
* Add a buffer to the buffer list with {name}.

denops_std/function/common.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { Denops } from "https://deno.land/x/denops_core@v3.2.0/mod.ts";
1+
import type { Denops } from "https://deno.land/x/denops_core@v3.2.2/mod.ts";
22

33
/**
44
* The result is a Number, which is |TRUE| if {expr} is

denops_std/function/cursor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { Denops } from "https://deno.land/x/denops_core@v3.2.0/mod.ts";
1+
import type { Denops } from "https://deno.land/x/denops_core@v3.2.2/mod.ts";
22
import type { Position, ScreenPos } from "./types.ts";
33

44
/**

denops_std/function/cursor_test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { assertEquals } from "https://deno.land/std@0.160.0/testing/asserts.ts";
2-
import { assertNumber } from "https://deno.land/x/unknownutil@v2.0.0/mod.ts";
3-
import { test } from "https://deno.land/x/denops_core@v3.2.0/test/mod.ts";
1+
import { assertEquals } from "https://deno.land/std@0.167.0/testing/asserts.ts";
2+
import { assertNumber } from "https://deno.land/x/unknownutil@v2.1.0/mod.ts";
3+
import { test } from "https://deno.land/x/denops_core@v3.2.2/test/mod.ts";
44
import * as cursor from "./cursor.ts";
55
import { assertPosition, assertScreenPos, isScreenPos } from "./types.ts";
66

denops_std/function/input.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { Denops } from "https://deno.land/x/denops_core@v3.2.0/mod.ts";
1+
import type { Denops } from "https://deno.land/x/denops_core@v3.2.2/mod.ts";
22
import { BuiltinCompletion, isValidBuiltinCompletion } from "./types.ts";
33

44
/**

denops_std/function/input_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import {
22
assertEquals,
33
assertRejects,
4-
} from "https://deno.land/std@0.160.0/testing/asserts.ts";
5-
import { test } from "https://deno.land/x/denops_core@v3.2.0/test/mod.ts";
4+
} from "https://deno.land/std@0.167.0/testing/asserts.ts";
5+
import { test } from "https://deno.land/x/denops_core@v3.2.2/test/mod.ts";
66
import { input, inputlist, inputsecret } from "./input.ts";
77
import * as autocmd from "../autocmd/mod.ts";
88
import { execute } from "../helper/execute.ts";

denops_std/function/nvim/_generated.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// NOTE: This file is generated. Do NOT modify it manually.
22
// deno-lint-ignore-file camelcase
3-
import type { Denops } from "https://deno.land/x/denops_core@v3.2.0/mod.ts";
3+
import type { Denops } from "https://deno.land/x/denops_core@v3.2.2/mod.ts";
44

55
/**
66
* Returns Dictionary of |api-metadata|.

denops_std/function/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {
22
AssertError,
33
isLike,
4-
} from "https://deno.land/x/unknownutil@v2.0.0/mod.ts";
4+
} from "https://deno.land/x/unknownutil@v2.1.0/mod.ts";
55

66
/**
77
* Type of `screenpos()` result.

denops_std/function/various.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { Denops } from "https://deno.land/x/denops_core@v3.2.0/mod.ts";
1+
import type { Denops } from "https://deno.land/x/denops_core@v3.2.2/mod.ts";
22

33
/**
44
* Return a string that indicates the current mode.

denops_std/function/various_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { assertEquals } from "https://deno.land/std@0.160.0/testing/asserts.ts";
2-
import { test } from "https://deno.land/x/denops_core@v3.2.0/test/mod.ts";
1+
import { assertEquals } from "https://deno.land/std@0.167.0/testing/asserts.ts";
2+
import { test } from "https://deno.land/x/denops_core@v3.2.2/test/mod.ts";
33
import * as various from "./various.ts";
44

55
test({

denops_std/function/vim/_generated.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// NOTE: This file is generated. Do NOT modify it manually.
22
// deno-lint-ignore-file camelcase
3-
import type { Denops } from "https://deno.land/x/denops_core@v3.2.0/mod.ts";
3+
import type { Denops } from "https://deno.land/x/denops_core@v3.2.2/mod.ts";
44

55
/**
66
* Return the current text in the balloon. Only for the string,

denops_std/helper/batch.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { Denops } from "https://deno.land/x/denops_core@v3.2.0/mod.ts";
1+
import type { Denops } from "https://deno.land/x/denops_core@v3.2.2/mod.ts";
22
import type { GatherHelper } from "../batch/mod.ts";
33
import { gather } from "../batch/mod.ts";
44

denops_std/helper/batch_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { assertEquals } from "https://deno.land/std@0.160.0/testing/asserts.ts";
2-
import { test } from "https://deno.land/x/denops_core@v3.2.0/test/mod.ts";
1+
import { assertEquals } from "https://deno.land/std@0.167.0/testing/asserts.ts";
2+
import { test } from "https://deno.land/x/denops_core@v3.2.2/test/mod.ts";
33
import * as fn from "../function/mod.ts";
44
import { batch } from "./batch.ts";
55

denops_std/helper/echo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { Denops } from "https://deno.land/x/denops_core@v3.2.0/mod.ts";
1+
import type { Denops } from "https://deno.land/x/denops_core@v3.2.2/mod.ts";
22
import { execute } from "./execute.ts";
33
import { batch } from "../batch/mod.ts";
44
import { generateUniqueString } from "../util.ts";

denops_std/helper/echo_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { test } from "https://deno.land/x/denops_core@v3.2.0/test/mod.ts";
1+
import { test } from "https://deno.land/x/denops_core@v3.2.2/test/mod.ts";
22
import { echo } from "./echo.ts";
33

44
test({

denops_std/helper/execute.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type {
22
Context,
33
Denops,
4-
} from "https://deno.land/x/denops_core@v3.2.0/mod.ts";
4+
} from "https://deno.land/x/denops_core@v3.2.2/mod.ts";
55

66
/**
77
* Execute Vim script directly

denops_std/helper/execute_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import {
22
assertEquals,
33
assertRejects,
4-
} from "https://deno.land/std@0.160.0/testing/asserts.ts";
5-
import { test } from "https://deno.land/x/denops_core@v3.2.0/test/mod.ts";
4+
} from "https://deno.land/std@0.167.0/testing/asserts.ts";
5+
import { test } from "https://deno.land/x/denops_core@v3.2.2/test/mod.ts";
66
import { execute } from "./execute.ts";
77

88
test({

denops_std/helper/input.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import type { Denops } from "https://deno.land/x/denops_core@v3.2.0/mod.ts";
1+
import type { Denops } from "https://deno.land/x/denops_core@v3.2.2/mod.ts";
22
import {
33
assertNumber,
44
assertString,
5-
} from "https://deno.land/x/unknownutil@v2.0.0/mod.ts";
5+
} from "https://deno.land/x/unknownutil@v2.1.0/mod.ts";
66
import * as fn from "../function/mod.ts";
77
import * as anonymous from "../anonymous/mod.ts";
88
import { execute } from "./execute.ts";

denops_std/helper/input_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import {
22
assertEquals,
33
assertRejects,
4-
} from "https://deno.land/std@0.160.0/testing/asserts.ts";
5-
import { test } from "https://deno.land/x/denops_core@v3.2.0/test/mod.ts";
4+
} from "https://deno.land/std@0.167.0/testing/asserts.ts";
5+
import { test } from "https://deno.land/x/denops_core@v3.2.2/test/mod.ts";
66
import { input } from "./input.ts";
77
import { execute } from "./execute.ts";
88
import * as autocmd from "../autocmd/mod.ts";

denops_std/helper/load.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import type { Denops } from "https://deno.land/x/denops_core@v3.2.0/mod.ts";
2-
import * as fs from "https://deno.land/std@0.160.0/fs/mod.ts";
3-
import * as path from "https://deno.land/std@0.160.0/path/mod.ts";
1+
import type { Denops } from "https://deno.land/x/denops_core@v3.2.2/mod.ts";
2+
import * as fs from "https://deno.land/std@0.167.0/fs/mod.ts";
3+
import * as path from "https://deno.land/std@0.167.0/path/mod.ts";
44
import { execute } from "./execute.ts";
55

66
const loaded = new Set<URL>();

denops_std/helper/load_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import {
22
assertEquals,
33
assertRejects,
4-
} from "https://deno.land/std@0.160.0/testing/asserts.ts";
5-
import { test } from "https://deno.land/x/denops_core@v3.2.0/test/mod.ts";
4+
} from "https://deno.land/std@0.167.0/testing/asserts.ts";
5+
import { test } from "https://deno.land/x/denops_core@v3.2.2/test/mod.ts";
66
import { load } from "./load.ts";
77

88
const loadScriptUrlBase =

denops_std/mapping/mod.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { Denops } from "https://deno.land/x/denops_core@v3.2.0/mod.ts";
1+
import type { Denops } from "https://deno.land/x/denops_core@v3.2.2/mod.ts";
22
import * as fn from "../function/mod.ts";
33
import * as batch from "../batch/mod.ts";
44
import { Mapping, Mode } from "./types.ts";

denops_std/mapping/mod_test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import type { Denops } from "https://deno.land/x/denops_core@v3.2.0/mod.ts";
1+
import type { Denops } from "https://deno.land/x/denops_core@v3.2.2/mod.ts";
22
import {
33
assertEquals,
44
assertRejects,
5-
} from "https://deno.land/std@0.160.0/testing/asserts.ts";
6-
import { test } from "https://deno.land/x/denops_core@v3.2.0/test/mod.ts";
5+
} from "https://deno.land/std@0.167.0/testing/asserts.ts";
6+
import { test } from "https://deno.land/x/denops_core@v3.2.2/test/mod.ts";
77
import { Mapping, Mode } from "./types.ts";
88
import * as mapping from "./mod.ts";
99

denops_std/mapping/parser_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {
22
assertEquals,
33
assertThrows,
4-
} from "https://deno.land/std@0.160.0/testing/asserts.ts";
4+
} from "https://deno.land/std@0.167.0/testing/asserts.ts";
55
import { Mapping } from "./types.ts";
66
import { parse } from "./parser.ts";
77

denops_std/mod.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ export type {
55
Denops,
66
Dispatcher,
77
Meta,
8-
} from "https://deno.land/x/denops_core@v3.2.0/mod.ts";
8+
} from "https://deno.land/x/denops_core@v3.2.2/mod.ts";

denops_std/option/_generated.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// NOTE: This file is generated. Do NOT modify it manually.
2-
import type { Denops } from "https://deno.land/x/denops_core@v3.2.0/mod.ts";
2+
import type { Denops } from "https://deno.land/x/denops_core@v3.2.2/mod.ts";
33
import { globalOptions, localOptions, options } from "./../variable/mod.ts";
44

55
/**

denops_std/option/nvim/_generated.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// NOTE: This file is generated. Do NOT modify it manually.
2-
import type { Denops } from "https://deno.land/x/denops_core@v3.2.0/mod.ts";
2+
import type { Denops } from "https://deno.land/x/denops_core@v3.2.2/mod.ts";
33
import { globalOptions, localOptions, options } from "../../variable/mod.ts";
44

55
/**

0 commit comments

Comments
 (0)