We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94d0099 commit 8807ebcCopy full SHA for 8807ebc
lib/read-docs.js
@@ -33,9 +33,11 @@ export default function readDocs(
33
)
34
35
if (!runClean) {
36
- availableSourceVersions = availableSourceVersions.filter(
37
- version => !prevIndexedVersions.includes(version)
38
- )
+ if (!ignorePreviouslyIndexedDoc) {
+ availableSourceVersions = availableSourceVersions.filter(
+ version => !prevIndexedVersions.includes(version)
39
+ )
40
+ }
41
42
folders = folders.filter(f => {
43
if (!prevIndexedVersions.includes(f) || ignorePreviouslyIndexedDoc) {
0 commit comments