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 3dbb502 commit 6223a9cCopy full SHA for 6223a9c
src/seeder.js
@@ -111,7 +111,7 @@ function getSeedsAtLocation(location) {
111
* @param {string[]} sources The filenames to scrape for seeds
112
*/
113
function locateSeeds(sources = [], cwd = process.cwd()) {
114
- const locations = sources.map(source => path.join(cwd, source));
+ const locations = sources.map((source) => path.join(cwd, source));
115
return BbPromise.map(locations, (location) => {
116
return fileExists(location).then((exists) => {
117
if(!exists) {
0 commit comments