Skip to content

Commit

Permalink
Add deno.jsonc
Browse files Browse the repository at this point in the history
  • Loading branch information
Shougo committed Apr 15, 2024
1 parent f66cf43 commit 3f9845d
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions deno.jsonc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"lock": false,
"tasks": {
"check": "deno check denops/**/*.ts",
"lint": "deno lint denops",
"fmt": "deno fmt denops",
"test": "deno test -A --doc --parallel --shuffle denops/**/*.ts",
"upgrade": "deno run -A https://deno.land/x/udd/main.ts denops/**/*.ts"
}
}
4 changes: 2 additions & 2 deletions denops/@ddu-sources/dpp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import {
ActionFlags,
BaseSource,
Item,
} from "https://deno.land/x/ddu_vim@v3.10.3/types.ts";
import { Denops, vars } from "https://deno.land/x/ddu_vim@v3.10.3/deps.ts";
} from "https://deno.land/x/ddu_vim@v4.0.0/types.ts";
import { Denops, vars } from "https://deno.land/x/ddu_vim@v4.0.0/deps.ts";
import { ActionData } from "https://deno.land/x/[email protected]/file.ts";
import { Plugin } from "../dpp/types.ts";

Expand Down
2 changes: 1 addition & 1 deletion denops/dpp/deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export * as op from "https://deno.land/x/[email protected]/option/mod.ts";
export * as fn from "https://deno.land/x/[email protected]/function/mod.ts";
export * as vars from "https://deno.land/x/[email protected]/variable/mod.ts";
export * as autocmd from "https://deno.land/x/[email protected]/autocmd/mod.ts";
export { ensure, is } from "https://deno.land/x/unknownutil@v3.17.2/mod.ts";
export { ensure, is } from "https://deno.land/x/unknownutil@v3.18.0/mod.ts";
export {
assertEquals,
assertInstanceOf,
Expand Down

0 comments on commit 3f9845d

Please sign in to comment.