Files
ALL-teach_sys/frontend_视觉设计/removeAllIndentation.cjs
KQL 38350dca36 更新12个教务系统并优化项目大小
主要更新:
- 更新所有12个产业的教务系统数据和功能
- 删除所有 node_modules 文件夹(节省3.7GB)
- 删除所有 .yoyo 缓存文件夹(节省1.2GB)
- 删除所有 dist 构建文件(节省55MB)

项目优化:
- 项目大小从 8.1GB 减少到 3.2GB(节省60%空间)
- 保留完整的源代码和配置文件
- .gitignore 已配置,防止再次提交大文件

启动脚本:
- start-industry.sh/bat/ps1 脚本会自动检测并安装依赖
- 首次启动时自动运行 npm install
- 支持单个或批量启动产业系统

🤖 Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-17 14:36:25 +08:00

82 lines
2.5 KiB
JavaScript

#!/usr/bin/env node
const fs = require('fs');
// Create backup
const timestamp = new Date().toISOString().replace(/[:.]/g, '-').slice(0, -5);
const backupPath = `src/mocks/resumeInterviewMock.js.backup_${timestamp}_remove_indent`;
const mockContent = fs.readFileSync('src/mocks/resumeInterviewMock.js', 'utf-8');
fs.writeFileSync(backupPath, mockContent);
console.log(`✓ Backup created: ${backupPath}`);
// Function to completely remove answer indentation
function removeAllIndentation(answer) {
// Split by newlines
const lines = answer.split('\\n');
const cleanedLines = [];
for (let line of lines) {
// Remove ALL leading spaces from each line
// This will make everything left-aligned
let cleanedLine = line.trimStart();
cleanedLines.push(cleanedLine);
}
return cleanedLines.join('\\n');
}
// Process the file
let updatedContent = mockContent;
let count = 0;
// More comprehensive pattern to match answer fields
// This handles multi-line answers with escaped characters
const answerRegex = /"answer":\s*"((?:[^"\\]|\\.)*)"/g;
updatedContent = updatedContent.replace(answerRegex, (match, answerContent) => {
// Unescape the answer content for processing
let unescaped = answerContent
.replace(/\\n/g, '\n')
.replace(/\\"/g, '"')
.replace(/\\\\/g, '\\');
// Remove all indentation
let cleaned = removeAllIndentation(unescaped);
// Re-escape for JSON
let escaped = cleaned
.replace(/\\/g, '\\\\')
.replace(/"/g, '\\"')
.replace(/\n/g, '\\n');
count++;
return `"answer": "${escaped}"`;
});
console.log(`\n✅ Removed indentation from ${count} answer fields`);
// Save the file
fs.writeFileSync('src/mocks/resumeInterviewMock.js', updatedContent);
// Verify syntax
const { execSync } = require('child_process');
try {
execSync('node -c src/mocks/resumeInterviewMock.js', { encoding: 'utf-8' });
console.log('✅ Syntax validation passed');
// Show a few samples of the cleaned content
console.log('\n📋 Sample of cleaned answers:');
const matches = updatedContent.matchAll(/"answer":\s*"([^"]{0,300})/g);
let samples = 0;
for (const match of matches) {
if (samples >= 2) break;
console.log(`\nSample ${samples + 1}:`);
console.log(match[1].replace(/\\n/g, '\n').substring(0, 250) + '...');
samples++;
}
} catch (error) {
console.error('❌ Syntax error detected, restoring backup...');
fs.writeFileSync('src/mocks/resumeInterviewMock.js', mockContent);
console.log('Backup restored');
console.error('Error:', error.message);
}