-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
this should have been committed earlier, no-verify
- Loading branch information
Showing
15 changed files
with
259 additions
and
190 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
{ | ||
"comment": "comment", | ||
"processor": "processor", | ||
"reader": "reader", | ||
"text": "text" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# reader | ||
|
||
|
||
|
||
## iterateOverWorkspacesAndReadFiles | ||
|
||
@name iterateOverWorkspacesAndReadFiles | ||
|
||
### Usage | ||
```js test=true | ||
import { fork, resolve, parallel } from 'fluture' | ||
|
||
fork(done)(x => { | ||
expect(x).toEqual([]) | ||
done() | ||
})( | ||
parallel(10)( | ||
iterateOverWorkspacesAndReadFiles( | ||
{ | ||
searchGlob: '*', | ||
ignore: [] | ||
}, | ||
'..', | ||
resolve(['tools/']) | ||
) | ||
) | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// This test automatically generated by doctor-general. | ||
// Sourced from 'reader.js', edits to this file may be erased. | ||
import { | ||
iterateOverWorkspacesAndReadFiles | ||
} from '../reader' | ||
|
||
import { fork, resolve, parallel } from 'fluture' | ||
test('iterateOverWorkspacesAndReadFiles', (done) => { | ||
fork(done)(x => { | ||
expect(x).toEqual([]) | ||
done() | ||
})( | ||
parallel(10)( | ||
Check failure on line 13 in packages/doctor-general/autotests/reader.spec.js
|
||
iterateOverWorkspacesAndReadFiles( | ||
{ | ||
searchGlob: '*', | ||
ignore: [] | ||
}, | ||
'..', | ||
resolve(['tools/']) | ||
) | ||
) | ||
) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.