seedgoose
Version:
Mongoose data seeding with smart id references tracking.
17 lines (14 loc) • 335 B
text/typescript
import Reporter from '../Reporter';
const silentReporter: Reporter = {
colorOutput: true,
startSeedCollection(collectionName: string) {
/**/
},
endSeedCollection(collectionName: string) {
/**/
},
didHandleRecord(action: string, collectionName: string, id: string) {
/**/
}
};
export default silentReporter;