-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #203 from vim-skk/remove_deps
Remove deps
- Loading branch information
Showing
32 changed files
with
109 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
export * as yaml from "jsr:@std/[email protected].4"; | ||
export * as msgpack from "https://esm.sh/@msgpack/[email protected]"; | ||
export { default as jsonschema } from "https://esm.sh/[email protected]"; | ||
export * as yaml from "jsr:@std/yaml@~1.0.5"; | ||
export * as msgpack from "npm:@msgpack/[email protected]"; | ||
export { default as jsonschema } from "npm:[email protected]"; | ||
export { default as jisyoschema } from "https://cdn.jsdelivr.net/gh/skk-dict/jisyo/schema/jisyo.schema.v0.0.0.json" with { type: "json" }; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
import { config } from "./config.ts"; | ||
import { toFileUrl } from "./deps/std/path.ts"; | ||
import { JpNum } from "./deps/japanese_numeral.ts"; | ||
import { RomanNum } from "./deps/roman.ts"; | ||
import { zip } from "./deps/std/collections.ts"; | ||
import type { CompletionData, RankData } from "./types.ts"; | ||
import { number2kanji } from "npm:@geolonia/[email protected]"; | ||
import { convertNumberToRoman } from "npm:[email protected]"; | ||
|
||
import { toFileUrl } from "jsr:@std/path@~1.0.3/to-file-url"; | ||
import { zip } from "jsr:@std/collections@~1.0.5/zip"; | ||
|
||
export const okuriAriMarker = ";; okuri-ari entries."; | ||
export const okuriNasiMarker = ";; okuri-nasi entries."; | ||
|
@@ -54,8 +55,8 @@ function toKanjiModern(n: number): string { | |
return kanjiNumbers[parseInt(c)]; | ||
}); | ||
} | ||
const toRoman: (n: number) => string = RomanNum.convertNumberToRoman; | ||
const toKanjiClassic: (n: number) => string = JpNum.number2kanji; | ||
const toRoman: (n: number) => string = convertNumberToRoman; | ||
const toKanjiClassic: (n: number) => string = number2kanji; | ||
|
||
function toDaiji(n: number): string { | ||
return toKanjiClassic(n) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.