Tobe Osakwe
Tobe Osakwe
Hey Cies. This language is slow-to-recompile (since it compiles to another language first). It's been a long time since I've really done anything on this project, and I'm not sure...
Hi, I am no longer maintaining this package. You're welcome to send a pull request, or fork it.
I don't think `faker` allows you to invoke functions like that. Instead, use a function: ```js const faker = require('faker'); const seederConfig = { services: [ { path: 'markets', count:...
Not sure the problem is within the seeder. This package just calls remove (unless you tell it not to), then generates data and calls create. The seeding function returns a...
Sounds good, will add this to next build. Edit: Actually not sure this would be possible. You'll have to use a `callback`. In the next build, I'll add an `app`...
Ah, I see what you mean, `index` is related to `count`. I'll add that as well.
So, can this issue be closed?
Perhaps I can add a hooking option to the `seed` function, like: ```js const seederConfig = { services: [...], hooks: { after: { delete() { return new Promise((resolve, reject) =>...
Hm, if you look at [the code for this](https://github.com/thosakwe/feathers-seeder/blob/master/src/seeder.js#L26-L28), the configurations are executed in whichever order `forEach` runs them, which I assume is the order you supply them in. But...
Sorry, didn't see this PR until today. Once #7 is in, I'll look into merging #5 and #6.