I have bunch of settings.js files where i have const item in a folder called components folder, i want to create a nodejs function so that it finds all the settings.js files and get all items and console logs them is it possible? if yes then how
bash ├── components │ ├── Atoms │ │ ├── Paragraph │ │ │ ├── Paragraph.jsx │ │ │ ├── Paragraph.module.scss │ │ │ ├── settings.js │ │ ├── Title │ │ │ ├── Title.jsx │ │ │ ├── Title.module.scss │ │ │ ├── settings.js │ ├── Molecules │ │ ├── GenericAligned │ │ │ ├── GenericAligned.jsx │ │ │ ├── GenericAligned.module.scss │ │ │ ├── settings.jsI havent started attempt yet