You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 8, 2024. It is now read-only.
File naming case (CamelCase, kebab-case, snake_case)
File templates
Index file support
module.exports={naming: {components: 'components',atoms: 'atoms',molecules: 'molecules',organisms: 'organisms',templates: 'templates',pages: 'pages',modules: 'modules',},fileExtensions: 'js',// default extension for all typesfileNamingCase: 'kebab-case',// UpperCamelCase, lowerCamelCase, snake_casetemplates: {// specified templates for each typecomponent: './templates/component.js'// if template file return string — should be .replace()// if return function, execute function with params},indexFile: {// if true, generate index.js for each typecomponents: false,// export all from atoms, molecules, organisms ...atoms: true,molecules: true,organisms: true,templates: false,pages: false,modules: false,// modules inherits config for atoms, molecules, ...},}