File tree 2 files changed +16
-2
lines changed
2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change 1
1
import * as path from 'path' ;
2
- import * as minimatch from 'minimatch' ;
2
+ import minimatch from 'minimatch' ;
3
3
4
4
import fs from './wrapped-fs' ;
5
5
import { Filesystem , FilesystemEntry } from './filesystem' ;
@@ -271,3 +271,16 @@ export function uncache(archivePath: string) {
271
271
export function uncacheAll ( ) {
272
272
disk . uncacheAll ( ) ;
273
273
}
274
+
275
+ export default {
276
+ createPackage,
277
+ createPackageWithOptions,
278
+ createPackageFromFiles,
279
+ statFile,
280
+ getRawHeader,
281
+ listPackage,
282
+ extractFile,
283
+ extractAll,
284
+ uncache,
285
+ uncacheAll,
286
+ } ;
Original file line number Diff line number Diff line change 15
15
"moduleResolution" : " node" ,
16
16
"declaration" : true ,
17
17
"noImplicitAny" : true ,
18
- "strictNullChecks" : true
18
+ "strictNullChecks" : true ,
19
+ "esModuleInterop" : true
19
20
},
20
21
"include" : [
21
22
" src"
You can’t perform that action at this time.
0 commit comments