mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-17 00:17:43 +01:00
* feat(site): added extended no results placeholder with brand icon stop words * feat(site): fix grammatical error * feat: extract brand stopwords & update github action to use these stopwords * Apply suggestions from code review Co-authored-by: Jakob Guddas <github@jguddas.de> * feat: only use icon name section for closing brand request issues * feat: added mcp brand stopword --------- Co-authored-by: Jakob Guddas <github@jguddas.de> Co-authored-by: Eric Fennis <eric.fennis@gmail.com>
16 lines
564 B
JavaScript
16 lines
564 B
JavaScript
import fs from 'fs/promises';
|
|
import path from 'path';
|
|
|
|
const currentDir = process.cwd();
|
|
const dataDirectory = path.resolve(currentDir, '.vitepress/data');
|
|
const stopwordsSource = path.resolve(currentDir, `../brand-stopwords.json`);
|
|
const stopwordsFile = path.resolve(dataDirectory, `brandStopwords.json`);
|
|
|
|
fs.copyFile(stopwordsSource, stopwordsFile)
|
|
.then(() => {
|
|
console.log('Successfully copied brandStopwords.json file');
|
|
})
|
|
.catch((error) => {
|
|
throw new Error(`Something went wrong generating the brandStopwords.json file,\n ${error}`);
|
|
});
|