Skip to content

Commit b5faea1

Browse files
committed
fix: Rename scopes.d.ts to scopes.ts
1 parent f0f88ba commit b5faea1

File tree

11 files changed

+10
-10
lines changed

11 files changed

+10
-10
lines changed

src/builder/builder.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import type {
88
OriginalPosition,
99
OriginalScope,
1010
ScopeInfo,
11-
} from "../scopes.d.ts";
11+
} from "../scopes.ts";
1212

1313
/**
1414
* Small utility class to build scope and range trees.

src/builder/safe_builder.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import type {
88
OriginalScope,
99
Position,
1010
ScopeInfo,
11-
} from "../scopes.d.ts";
11+
} from "../scopes.ts";
1212
import { comparePositions } from "../util.ts";
1313
import { ScopeInfoBuilder, type ScopeKey } from "./builder.ts";
1414

src/decode/decode.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
} from "jsr:@std/assert";
1414
import { encodeSigned, encodeUnsigned } from "../vlq.ts";
1515
import { decode, DecodeMode } from "./decode.ts";
16-
import type { IndexSourceMapJson, SourceMapJson } from "../scopes.d.ts";
16+
import type { IndexSourceMapJson, SourceMapJson } from "../scopes.ts";
1717
import { GeneratedRangeFlags, OriginalScopeFlags, Tag } from "../codec.ts";
1818

1919
class ItemEncoder {

src/decode/decode.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import type {
1818
SourceMap,
1919
SourceMapJson,
2020
SubRangeBinding,
21-
} from "../scopes.d.ts";
21+
} from "../scopes.ts";
2222
import { TokenIterator } from "../vlq.ts";
2323

2424
/**

src/encode/encode.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// found in the LICENSE file.
44

55
import { beforeEach, describe, it } from "jsr:@std/testing/bdd";
6-
import type { ScopeInfo, SourceMapJson } from "../scopes.d.ts";
6+
import type { ScopeInfo, SourceMapJson } from "../scopes.ts";
77
import { assertStrictEquals, assertThrows } from "jsr:@std/assert";
88
import { encode } from "./encode.ts";
99
import { ScopeInfoBuilder } from "../builder/builder.ts";

src/encode/encode.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Use of this source code is governed by a BSD-style license that can be
33
// found in the LICENSE file.
44

5-
import type { ScopeInfo, SourceMapJson } from "../scopes.d.ts";
5+
import type { ScopeInfo, SourceMapJson } from "../scopes.ts";
66
import { Encoder } from "./encoder.ts";
77

88
/**

src/encode/encoder.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
GeneratedRangeFlags,
88
OriginalScopeFlags,
99
} from "../codec.ts";
10-
import type { GeneratedRange, OriginalScope, ScopeInfo } from "../scopes.d.ts";
10+
import type { GeneratedRange, OriginalScope, ScopeInfo } from "../scopes.ts";
1111
import { encodeSigned, encodeUnsigned } from "../vlq.ts";
1212
import { comparePositions } from "../util.ts";
1313

src/mod.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export type {
1111
ScopeInfo,
1212
SourceMapJson,
1313
SubRangeBinding,
14-
} from "./scopes.d.ts";
14+
} from "./scopes.ts";
1515

1616
export { encode } from "./encode/encode.ts";
1717
export { decode, DecodeMode } from "./decode/decode.ts";

src/roundtrip.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*/
99

1010
import { beforeEach, describe, it } from "jsr:@std/testing/bdd";
11-
import type { ScopeInfo } from "./scopes.d.ts";
11+
import type { ScopeInfo } from "./scopes.ts";
1212
import { encode } from "./encode/encode.ts";
1313
import { decode } from "./decode/decode.ts";
1414
import { assertEquals } from "jsr:@std/assert";
File renamed without changes.

0 commit comments

Comments
 (0)