File tree 4 files changed +4
-8
lines changed
4 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ import { SupabaseModule } from 'src/supabase/supabase.module'
16
16
import { SupabaseService } from 'src/supabase/supabase.service'
17
17
import { DiscordModule } from 'src/discord/discord.module'
18
18
import { DiscordService } from 'src/discord/discord.service'
19
+ import { SalesDailyCommand } from 'src/sales-daily/sales-daily.command'
19
20
import { UnactivatedCheckService } from 'src/unactivated-check/unactivated-check.service'
20
21
import { SalesDailyService } from 'src/sales-daily/sales-daily.service'
21
22
@@ -40,6 +41,7 @@ import { SalesDailyService } from 'src/sales-daily/sales-daily.service'
40
41
useClass : PuppeteerService ,
41
42
} ,
42
43
AfterPurchaseCommand ,
44
+ SalesDailyCommand ,
43
45
AfterPurchaseService ,
44
46
UnactivatedCheckService ,
45
47
SalesDailyService ,
Original file line number Diff line number Diff line change @@ -49,8 +49,8 @@ export class SalesDailyService {
49
49
archives [ 2 ] . push ( `${ receipts . filter ( v => v . role === Constants . PEATIX_WITH_PARTY_ROLE ) . filter ( v => v . date . includes ( `${ date . getFullYear ( ) } /${ date . getMonth ( ) + 1 } /${ date . getDate ( ) } ` ) ) . length } ` )
50
50
}
51
51
for ( const archive of archives ) {
52
- this . logger . log ( `${ archive . join ( ', ' ) } ` )
53
- this . discordService . send ( 'After Purchase Bot' , `${ archive . join ( ', ' ) } ` )
52
+ this . logger . log ( `${ archive . join ( ',' ) } ` )
53
+ this . discordService . send ( 'After Purchase Bot' , `${ archive . join ( ',' ) } ` )
54
54
}
55
55
}
56
56
}
Original file line number Diff line number Diff line change 8
8
"dev" : " turbo dev" ,
9
9
"build" : " turbo build" ,
10
10
"build-after-purchase" : " turbo build-after-purchase" ,
11
- "build-unactivated-check" : " turbo build-unactivated-check" ,
12
11
"build-sales-daily" : " turbo build-sales-daily" ,
13
12
"build-docs" : " turbo build-docs" ,
14
13
"build-storybook" : " turbo build-storybook" ,
Original file line number Diff line number Diff line change 18
18
"outputs" : [" dist/**" ],
19
19
"dotEnv" : [" .env" ]
20
20
},
21
- "build-unactivated-check" : {
22
- "dependsOn" : [" ^build-after-purchase" ],
23
- "outputs" : [" dist/**" ],
24
- "dotEnv" : [" .env" ]
25
- },
26
21
"build-sales-daily" : {
27
22
"dependsOn" : [" ^build-after-purchase" ],
28
23
"outputs" : [" dist/**" ],
You can’t perform that action at this time.
0 commit comments