diff --git a/.qwen/settings.json b/.qwen/settings.json index f3907f1..1efafae 100644 --- a/.qwen/settings.json +++ b/.qwen/settings.json @@ -1,7 +1,8 @@ { "permissions": { "allow": [ - "Bash(npm run *)" + "Bash(npm run *)", + "Bash(findstr *)" ] }, "$version": 3 diff --git a/extract-css.js b/extract-css.js new file mode 100644 index 0000000..f1f1c5e --- /dev/null +++ b/extract-css.js @@ -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(' -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); diff --git a/src/App.vue b/src/App.vue index f2f1b9f..1177049 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,4 +1,18 @@ - +