Revert "Fix/tailwindcss v4"

This commit is contained in:
senshinya
2025-07-19 11:06:09 +08:00
committed by GitHub
parent cc7a388a1b
commit a9fd75d619
37 changed files with 1244 additions and 667 deletions

View File

@@ -3,34 +3,28 @@
// AUTO-GENERATED SCRIPT: Converts config.json to TypeScript definition.
// Usage: node scripts/convert-config.js
import fs from "fs";
import path from "path";
import { fileURLToPath } from "url";
import { dirname } from "path";
// Get __dirname equivalent for ES modules
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
const fs = require('fs');
const path = require('path');
// Resolve project root (one level up from scripts folder)
const projectRoot = path.resolve(__dirname, "..");
const projectRoot = path.resolve(__dirname, '..');
// Paths
const configPath = path.join(projectRoot, "config.json");
const libDir = path.join(projectRoot, "src", "lib");
const oldRuntimePath = path.join(libDir, "runtime.ts");
const newRuntimePath = path.join(libDir, "runtime.ts");
const configPath = path.join(projectRoot, 'config.json');
const libDir = path.join(projectRoot, 'src', 'lib');
const oldRuntimePath = path.join(libDir, 'runtime.ts');
const newRuntimePath = path.join(libDir, 'runtime.ts');
// Delete the old runtime.ts file if it exists
if (fs.existsSync(oldRuntimePath)) {
fs.unlinkSync(oldRuntimePath);
console.log("旧的 runtime.ts 已删除");
console.log('旧的 runtime.ts 已删除');
}
// Read and parse config.json
let rawConfig;
try {
rawConfig = fs.readFileSync(configPath, "utf8");
rawConfig = fs.readFileSync(configPath, 'utf8');
} catch (err) {
console.error(`无法读取 ${configPath}:`, err);
process.exit(1);
@@ -40,7 +34,7 @@ let config;
try {
config = JSON.parse(rawConfig);
} catch (err) {
console.error("config.json 不是有效的 JSON:", err);
console.error('config.json 不是有效的 JSON:', err);
process.exit(1);
}
@@ -59,9 +53,9 @@ if (!fs.existsSync(libDir)) {
// Write to runtime.ts
try {
fs.writeFileSync(newRuntimePath, tsContent, "utf8");
console.log("已生成 src/lib/runtime.ts");
fs.writeFileSync(newRuntimePath, tsContent, 'utf8');
console.log('已生成 src/lib/runtime.ts');
} catch (err) {
console.error("写入 runtime.ts 失败:", err);
console.error('写入 runtime.ts 失败:', err);
process.exit(1);
}

View File

@@ -2,56 +2,50 @@
/* eslint-disable */
// 根据 SITE_NAME 动态生成 manifest.json
import fs from "fs";
import path from "path";
import { fileURLToPath } from "url";
import { dirname } from "path";
// Get __dirname equivalent for ES modules
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
const fs = require('fs');
const path = require('path');
// 获取项目根目录
const projectRoot = path.resolve(__dirname, "..");
const publicDir = path.join(projectRoot, "public");
const manifestPath = path.join(publicDir, "manifest.json");
const projectRoot = path.resolve(__dirname, '..');
const publicDir = path.join(projectRoot, 'public');
const manifestPath = path.join(publicDir, 'manifest.json');
// 从环境变量获取站点名称
const siteName = process.env.SITE_NAME || "MoonTV";
const siteName = process.env.SITE_NAME || 'MoonTV';
// manifest.json 模板
const manifestTemplate = {
name: siteName,
short_name: siteName,
description: "影视聚合",
start_url: "/",
scope: "/",
display: "standalone",
background_color: "#000000",
"name": siteName,
"short_name": siteName,
"description": "影视聚合",
"start_url": "/",
"scope": "/",
"display": "standalone",
"background_color": "#000000",
"apple-mobile-web-app-capable": "yes",
"apple-mobile-web-app-status-bar-style": "black",
icons: [
"icons": [
{
src: "/icons/icon-192x192.png",
sizes: "192x192",
type: "image/png",
"src": "/icons/icon-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
src: "/icons/icon-256x256.png",
sizes: "256x256",
type: "image/png",
"src": "/icons/icon-256x256.png",
"sizes": "256x256",
"type": "image/png"
},
{
src: "/icons/icon-384x384.png",
sizes: "384x384",
type: "image/png",
"src": "/icons/icon-384x384.png",
"sizes": "384x384",
"type": "image/png"
},
{
src: "/icons/icon-512x512.png",
sizes: "512x512",
type: "image/png",
},
],
"src": "/icons/icon-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
]
};
try {
@@ -64,6 +58,6 @@ try {
fs.writeFileSync(manifestPath, JSON.stringify(manifestTemplate, null, 2));
console.log(`✅ Generated manifest.json with site name: ${siteName}`);
} catch (error) {
console.error("❌ Error generating manifest.json:", error);
console.error('❌ Error generating manifest.json:', error);
process.exit(1);
}