File tree Expand file tree Collapse file tree 5 files changed +232
-40
lines changed Expand file tree Collapse file tree 5 files changed +232
-40
lines changed Original file line number Diff line number Diff line change @@ -67,8 +67,8 @@ loaderDetected.then((load) => {
67
67
let remaining = globList . length
68
68
let loading = Promise . resolve ( )
69
69
globList . forEach ( ( globPattern ) => {
70
- glob ( globPattern , { ignore : ignore } )
71
- . on ( "match " , ( fileName ) => {
70
+ glob . globStream ( globPattern , { ignore : ignore } )
71
+ . on ( "data " , ( fileName ) => {
72
72
var fullPath = path . join ( cwd , fileName )
73
73
loading = loading . then ( ( ) => {
74
74
o . metadata ( { file : fullPath } )
Original file line number Diff line number Diff line change @@ -26,8 +26,8 @@ Change log
26
26
======
27
27
28
28
### Upcoming
29
-
30
- * Nothing yet *
29
+ <!-- Add new lines here. Version number will be decided later -->
30
+ - Update ` glob ` dependency to v9.
31
31
32
32
### 4.2.0
33
33
_ 2023-03-10_
@@ -130,7 +130,6 @@ _2019-07-24_
130
130
_ 2019-02-07_
131
131
132
132
- ospec: Test results now include ` .message ` and ` .context ` regardless of whether the test passed or failed. (#2227 @robertakarobin )
133
- <!-- Add new lines here. Version number will be decided later -->
134
133
- Add ` spy.calls ` array property to get the ` this ` and ` arguments ` values for any arbitrary call. (#2221 @isiahmeadows )
135
134
- Added ` .throws ` and ` .notThrows ` assertions to ospec. (#2255 @robertakarobin )
136
135
- Update ` glob ` dependency.
You can’t perform that action at this time.
0 commit comments