File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ import { existsSync } from "fs";
33import * as micromatch from "micromatch" ;
44import { resolve } from "path" ;
55
6- import { Options , Path } from "./types" ;
7- import { buildDebugger , withDuration } from "../utils" ;
6+ import { Options , Path } from ".. /types" ;
7+ import { buildDebugger , withDuration } from "../../ utils" ;
88
99type ParsedLine = { relativePath : string ; commitCount : string } ;
1010const internal = { debug : buildDebugger ( "churn" ) } ;
Original file line number Diff line number Diff line change 11import { resolve } from "path" ;
22
3- import { Options , Path } from "./types" ;
4- import { buildDebugger , UnsupportedExtension , withDuration } from "../utils" ;
5- import computeSloc from "./complexity/ sloc" ;
6- import { calculate as calculateCyclomatic } from "./complexity/ cyclomatic" ;
7- import { calculate as calculateHalstead } from "./complexity/ halstead" ;
3+ import { Options , Path } from ".. /types" ;
4+ import { buildDebugger , UnsupportedExtension , withDuration } from "../../ utils" ;
5+ import computeSloc from "./sloc" ;
6+ import { calculate as calculateCyclomatic } from "./cyclomatic" ;
7+ import { calculate as calculateHalstead } from "./halstead" ;
88
99type ComplexityEntry = { path : Path ; complexity : number } ;
1010const internal = { debug : buildDebugger ( "complexity" ) } ;
Original file line number Diff line number Diff line change 1- import Churn from "./churn" ;
1+ import Churn from "./churn/churn " ;
22import Complexity from "./complexity" ;
33import { Options , Path , Sort } from "./types" ;
44import { buildDebugger } from "../utils" ;
You can’t perform that action at this time.
0 commit comments