Skip to content

Commit

Permalink
chore: latest verbatim-module-syntax fixes (#4418)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret authored Feb 29, 2024
1 parent 45f7a6b commit b72ec06
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion archive/tar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ import { Buffer } from "../io/buffer.ts";
import { assert } from "../assert/assert.ts";
import { HEADER_LENGTH } from "./_common.ts";

export { type TarInfo, type TarMeta, type TarOptions };
export type { TarInfo, TarMeta, TarOptions };

const USTAR_MAGIC_HEADER = "ustar\u000000";

Expand Down
7 changes: 6 additions & 1 deletion csv/parse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,12 @@ import {
} from "./_io.ts";
import { assert } from "../assert/assert.ts";

export { ParseError, type ParseResult, ReadOptions, type RecordWithColumn };
export {
ParseError,
type ParseResult,
type ReadOptions,
type RecordWithColumn,
};

const BYTE_ORDER_MARK = "\ufeff";

Expand Down
2 changes: 1 addition & 1 deletion semver/_is_comparator_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { assert } from "../assert/mod.ts";
import { INVALID, MIN } from "./constants.ts";
import { isComparator } from "./_is_comparator.ts";
import { formatComparator } from "./_format_comparator.ts";
import { Comparator } from "./types.ts";
import type { Comparator } from "./types.ts";

Deno.test({
name: "isComparator()",
Expand Down
2 changes: 1 addition & 1 deletion semver/is_range_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { assert } from "../assert/mod.ts";
import { ALL } from "./constants.ts";
import { formatRange } from "./format_range.ts";
import { isRange } from "./is_range.ts";
import { Range } from "./types.ts";
import type { Range } from "./types.ts";

Deno.test({
name: "isRange()",
Expand Down

0 comments on commit b72ec06

Please sign in to comment.