File tree Expand file tree Collapse file tree 3 files changed +132
-134
lines changed Expand file tree Collapse file tree 3 files changed +132
-134
lines changed Original file line number Diff line number Diff line change 61
61
"codecov" : " codecov --token=66c30c23-8954-4892-bef9-fbaed0a2e42b"
62
62
},
63
63
"dependencies" : {
64
- "camelcase" : " 6.2.0" ,
65
- "commander" : " 6.2.0" ,
66
- "handlebars" : " 4.7.6" ,
67
- "js-yaml" : " 3.14.0" ,
68
- "mkdirp" : " 1.0.4" ,
69
- "rimraf" : " 3.0.2"
64
+ "camelcase" : " ^ 6.2.0" ,
65
+ "commander" : " ^ 6.2.0" ,
66
+ "handlebars" : " ^ 4.7.6" ,
67
+ "js-yaml" : " ^ 3.14.0" ,
68
+ "mkdirp" : " ^ 1.0.4" ,
69
+ "rimraf" : " ^ 3.0.2"
70
70
},
71
71
"devDependencies" : {
72
72
"@babel/cli" : " 7.12.7" ,
98
98
"rollup" : " 2.33.3" ,
99
99
"rollup-plugin-terser" : " 7.0.2" ,
100
100
"rollup-plugin-typescript2" : " 0.29.0" ,
101
- "typescript" : " 4.0.5 "
101
+ "typescript" : " 4.1.2 "
102
102
}
103
103
}
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export const exists = promisify(__exists);
13
13
export const mkdir = mkdirp ;
14
14
15
15
// Promisified version of rimraf
16
- export const rmdir = ( path : string ) =>
16
+ export const rmdir = ( path : string ) : Promise < void > =>
17
17
new Promise ( ( resolve , reject ) => {
18
18
rimraf ( path , ( error : Error ) => {
19
19
if ( error ) {
You can’t perform that action at this time.
0 commit comments