fix
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
const fs = require('fs');
|
||||
|
||||
const files = [
|
||||
'src/views/pages/marketing/targetologist/TargetologistDashboard.vue',
|
||||
'src/views/pages/marketing/targetologist/CampaignWizard.vue',
|
||||
'src/views/pages/marketing/targetologist/CampaignInsightsDetail.vue'
|
||||
];
|
||||
|
||||
let output = '';
|
||||
|
||||
files.forEach(f => {
|
||||
const code = fs.readFileSync(f, 'utf8');
|
||||
const start = code.indexOf('<style');
|
||||
if (start > -1) {
|
||||
output += `\n\n--- ${f} ---\n`;
|
||||
output += code.substring(start);
|
||||
}
|
||||
});
|
||||
|
||||
fs.writeFileSync('.gemini/antigravity/brain/07bc414d-2889-4e3c-b92f-f303bbe851bf/scratch/targetologist-styles.txt', output);
|
||||
Reference in New Issue
Block a user