v7.3@uwuzu1.5.4をリリース

This commit is contained in:
2025-08-04 20:08:23 +09:00
parent 718e97ed45
commit 6ec9831ed4
15 changed files with 353 additions and 42 deletions
+9 -1
View File
@@ -11,13 +11,16 @@ import * as cron from "node-cron";
import timeNotice from "./scripts/timeNotice.js";
import { weatherNotice } from "./scripts/weatherNotice.js";
import earthquakeNotice from "./scripts/earthquakeNotice.js";
import birthdayNotice from "./scripts/birthdayNotice.js";
import Commands from "./scripts/commands/main.js";
import BirthdayDataSet from "./scripts/birthdayDataSet.js";
// その他機能
import asciiArt from "./scripts/asciiart.js";
asciiArt();
import successExit from "./scripts/successExit.js";
successExit();
BirthdayDataSet();
// 地震情報観測開始
earthquakeNotice();
@@ -27,6 +30,8 @@ cron.schedule("0 * * * *", () => {
timeNotice();
});
birthdayNotice();
// コマンド(10分/1回)
cron.schedule('*/10 * * * *', () => {
Commands();
@@ -34,7 +39,10 @@ cron.schedule('*/10 * * * *', () => {
// 天気お知らせ(毎日7:00)
cron.schedule("0 7 * * *", () => {
weatherNotice();
setTimeout(() => {
weatherNotice();
birthdayNotice();
}, 100);
});
// 起動表示