File tree Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 20
20
"node" : " >= 8.0.0"
21
21
},
22
22
"dependencies" : {
23
- "@types/minimatch" : " 3.0.3" ,
24
23
"fs-extra" : " ^8.1.0" ,
25
24
"handlebars" : " ^4.7.2" ,
26
25
"highlight.js" : " ^9.17.1" ,
33
32
"typescript" : " 3.7.x"
34
33
},
35
34
"devDependencies" : {
35
+ "@types/minimatch" : " 3.0.3" ,
36
36
"@types/fs-extra" : " ^8.0.1" ,
37
37
"@types/lodash" : " ^4.14.149" ,
38
38
"@types/marked" : " ^0.7.2" ,
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ export { Application } from './lib/application';
2
2
export { CliApplication } from './lib/cli' ;
3
3
4
4
export { EventDispatcher , Event } from './lib/utils/events' ;
5
- export { createMinimatch } from './lib/utils/paths' ;
6
5
export { resetReflectionID } from './lib/models/reflections/abstract' ;
7
6
export { normalizePath } from './lib/utils/fs' ;
8
7
export * from './lib/models/reflections' ;
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { Minimatch } from 'minimatch';
4
4
import isEqual = require( 'lodash/isEqual' ) ;
5
5
import Assert = require( 'assert' ) ;
6
6
7
- import { createMinimatch } from '../..' ;
7
+ import { createMinimatch } from '../../lib/utils/paths ' ;
8
8
9
9
// Used to ensure uniform path cross OS
10
10
const absolutePath = ( path : string ) => Path . resolve ( path . replace ( / ^ \w : / , '' ) ) . replace ( / [ \\ ] / g, '/' ) ;
You can’t perform that action at this time.
0 commit comments