@@ -25,10 +25,10 @@ export const env = {
2525 migrations : [ path . relative ( path . join ( process . cwd ( ) ) , path . join ( __dirname , '..' , 'database/migrations/*.ts' ) ) ] ,
2626 migrationsDir : path . relative ( path . join ( process . cwd ( ) ) , path . join ( __dirname , '..' , 'database/migrations' ) ) ,
2727 entities : [ path . relative ( path . join ( process . cwd ( ) ) , path . join ( __dirname , '..' , 'api/**/models/*{.js,.ts}' ) ) ] ,
28- subscribers : [ path . relative ( path . join ( process . cwd ( ) ) , path . join ( __dirname , '..' , 'api/**/*Subscriber{.js,.ts}' ) ) ] ,
29- controllers : [ path . relative ( path . join ( process . cwd ( ) ) , path . join ( __dirname , '..' , 'api/**/*Controller{.js,.ts}' ) ) ] ,
30- middlewares : [ path . relative ( path . join ( process . cwd ( ) ) , path . join ( __dirname , '..' , 'api/**/*Middleware{.js,.ts}' ) ) ] ,
31- interceptors : [ path . relative ( path . join ( process . cwd ( ) ) , path . join ( __dirname , '..' , 'api/**/*Interceptor{.js,.ts}' ) ) ] ,
28+ subscribers : [ path . join ( __dirname , '..' , 'api/**/*Subscriber{.js,.ts}' ) ] ,
29+ controllers : [ path . join ( __dirname , '..' , 'api/**/*Controller{.js,.ts}' ) ] ,
30+ middlewares : [ path . join ( __dirname , '..' , 'api/**/*Middleware{.js,.ts}' ) ] ,
31+ interceptors : [ path . join ( __dirname , '..' , 'api/**/*Interceptor{.js,.ts}' ) ] ,
3232 } ,
3333 } ,
3434 log : {
0 commit comments