File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -15,5 +15,6 @@ export { populatePartGrade } from "./src/seeders/populatePartGrade.js";
15
15
export { populateBrand } from "./src/seeders/populateBrand.js" ;
16
16
export { populateSkin } from "./src/seeders/populateSkin.js" ;
17
17
export { populateSkinType } from "./src/seeders/populateSkinType.js" ;
18
+ export { populateWarehouse } from "./src/seeders/populateWarehouse.js" ;
18
19
export { getWarehouseInventory } from "./src/functions/getWarehouseInventory.js" ;
19
20
export type { WarehouseInventory } from "./src/functions/getWarehouseInventory.js" ;
Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ import {
34
34
populateBrand ,
35
35
populateSkin ,
36
36
populateSkinType ,
37
+ populateWarehouse ,
37
38
} from "rusty-motors-database" ;
38
39
39
40
/**
@@ -284,7 +285,7 @@ export class Gateway implements TGateway {
284
285
await populatePlayer ( ) ;
285
286
await populateSkinType ( ) ;
286
287
await populateSkin ( ) ;
287
- // await populateWarehouse();
288
+ await populateWarehouse ( ) ;
288
289
} catch ( error ) {
289
290
this . log . error ( `Error in populating game data: ${ error as string } ` ) ;
290
291
throw error ;
You can’t perform that action at this time.
0 commit comments