Skip to content

Commit 901a11e

Browse files
committed
update imports
1 parent 87b3afe commit 901a11e

File tree

3 files changed

+37
-10
lines changed

3 files changed

+37
-10
lines changed

deno.jsonc

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@leawind/seriall",
3-
"version": "0.5.0",
3+
"version": "0.5.1",
44
"license": "GPLv3",
55
"exports": "./src/index.ts",
66
"tasks": {
@@ -13,9 +13,11 @@
1313
]
1414
},
1515
"imports": {
16-
"@leawind/bimap": "jsr:@leawind/bimap@^0.1.0",
17-
"@std": "jsr:@std",
18-
"@/": "./src/"
16+
"@/": "./src/",
17+
"@std/assert": "jsr:@std/assert@^1.0.12",
18+
"@std/toml": "jsr:@std/toml@^1.0.3",
19+
"@std/yaml": "jsr:@std/yaml@^1.0.5",
20+
"@leawind/bimap": "jsr:@leawind/bimap@^0.1.0"
1921
},
2022
"fmt": {
2123
"useTabs": true,

deno.lock

Lines changed: 29 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/seriall-sync/seriall-sync.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ import * as toml from '@std/toml';
22
import * as yaml from '@std/yaml';
33
import { BiMap } from '@leawind/bimap';
44

5-
import type { Pure } from '@/seriall/core/pure.ts';
65
import { BUILTIN_PALETTE } from '@/seriall/builtin/palette.ts';
6+
import type { Pure } from '@/seriall/core/pure.ts';
77
import type { StringifyFormatOptions } from '@/seriall/utils.ts';
88

9-
import type { ContextSync, ContextSyncLike } from '@/seriall-sync/core/context.ts';
109
import { BUILTIN_ADAPTERS_SYNC } from '@/seriall-sync/builtin/adapters.ts';
1110
import { obj2puresSync, pures2objSync } from '@/seriall-sync/core/core.ts';
11+
import type { ContextSync, ContextSyncLike } from '@/seriall-sync/core/context.ts';
1212

1313
function buildSeriallContextSync(options: ContextSyncLike): ContextSync {
1414
return {

0 commit comments

Comments
 (0)