File tree Expand file tree Collapse file tree 4 files changed +20
-8
lines changed Expand file tree Collapse file tree 4 files changed +20
-8
lines changed Original file line number Diff line number Diff line change 5
5
import { expandGlob } from "jsr:@std/fs" ;
6
6
import { format } from "jsr:@std/fmt/bytes" ;
7
7
8
- import { decode , DecodeMode } from "../mod.ts" ;
8
+ import { decode , DecodeMode } from "../src/ mod.ts" ;
9
9
10
10
const BENCHMARKS = await ( async ( ) => {
11
11
const result = [ ] ;
Original file line number Diff line number Diff line change 5
5
import { expandGlob } from "jsr:@std/fs" ;
6
6
import { format } from "jsr:@std/fmt/bytes" ;
7
7
8
- import { decode , encode } from "../mod.ts" ;
8
+ import { decode , encode } from "../src/ mod.ts" ;
9
9
10
10
const BENCHMARKS = await ( async ( ) => {
11
11
const result = [ ] ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @chrome-devtools/source-map-scopes-codec" ,
3
3
"version" : " 0.1.0" ,
4
- "exports" : " ./mod.ts" ,
4
+ "exports" : " ./src/ mod.ts" ,
5
5
"license" : " BSD-3-Clause" ,
6
6
"fmt" : {
7
7
"exclude" : [" README.md" , " CONTRIBUTING.md" ]
8
+ },
9
+ "publish" : {
10
+ "include" : [
11
+ " CONTRIBUTING.md" ,
12
+ " LICENSE" ,
13
+ " README.md" ,
14
+ " src/**/*.ts"
15
+ ],
16
+ "exclude" : [
17
+ " bench" ,
18
+ " src/**/*.test.ts"
19
+ ]
8
20
}
9
21
}
Original file line number Diff line number Diff line change @@ -11,10 +11,10 @@ export type {
11
11
ScopeInfo ,
12
12
SourceMapJson ,
13
13
SubRangeBinding ,
14
- } from "./src/ scopes.d.ts" ;
14
+ } from "./scopes.d.ts" ;
15
15
16
- export { encode } from "./src/ encode/encode.ts" ;
17
- export { decode , DecodeMode } from "./src/ decode/decode.ts" ;
16
+ export { encode } from "./encode/encode.ts" ;
17
+ export { decode , DecodeMode } from "./decode/decode.ts" ;
18
18
19
- export { ScopeInfoBuilder } from "./src/ builder/builder.ts" ;
20
- export { SafeScopeInfoBuilder } from "./src/ builder/safe_builder.ts" ;
19
+ export { ScopeInfoBuilder } from "./builder/builder.ts" ;
20
+ export { SafeScopeInfoBuilder } from "./builder/safe_builder.ts" ;
You can’t perform that action at this time.
0 commit comments