Skip to content

Commit 7befb37

Browse files
committedMar 28, 2024
fix(index): fix "Initializing" state never being emitted
1 parent e41d1f2 commit 7befb37

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed
 

‎src/index.ts

+15-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
11
import {isAbsolute, join, relative} from "path";
22

33
import type {Observable} from "rxjs";
4-
import {concatAll, count, endWith, filter, from, map, mergeMap, mergeWith, of, scan} from "rxjs";
4+
import {
5+
startWith,
6+
concatAll,
7+
count,
8+
endWith,
9+
filter,
10+
from,
11+
map,
12+
mergeMap,
13+
mergeWith,
14+
of,
15+
scan
16+
} from "rxjs";
517
import {
618
getModifiedFilenames,
719
index,
@@ -259,6 +271,7 @@ export function main(
259271
}
260272
},
261273
{state: "Initializing"}
262-
)
274+
),
275+
startWith({state: "Initializing"} as const)
263276
);
264277
}

0 commit comments

Comments
 (0)
Please sign in to comment.