File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 16
16
" typescript"
17
17
],
18
18
"scripts" : {
19
- "test" : " del-cli test/fixtures/compiled && xo && nyc ava"
19
+ "test" : " xo && nyc ava"
20
20
},
21
21
"dependencies" : {
22
22
"escape-string-regexp" : " ^2.0.0" ,
25
25
},
26
26
"devDependencies" : {
27
27
"ava" : " ^3.0.0" ,
28
- "del-cli " : " ^3.0 .0" ,
28
+ "del" : " ^5.1 .0" ,
29
29
"nyc" : " ^15.0.0" ,
30
30
"typescript" : " ^3.7.5" ,
31
31
"xo" : " ^0.25.3"
Original file line number Diff line number Diff line change 1
1
const path = require ( 'path' ) ;
2
2
const test = require ( 'ava' ) ;
3
+ const del = require ( 'del' ) ;
3
4
const execa = require ( 'execa' ) ;
4
5
const withProvider = require ( './_with-provider' ) ;
5
6
7
+ test . before ( 'deleting compiled files' , async t => {
8
+ t . log ( await del ( 'test/fixtures/compiled' ) ) ;
9
+ } ) ;
10
+
6
11
const compile = async provider => {
7
12
return {
8
13
state : await provider . main ( {
You can’t perform that action at this time.
0 commit comments