Skip to content

Commit

Permalink
feat: allow MF components
Browse files Browse the repository at this point in the history
  • Loading branch information
abu-seini-maf committed Oct 24, 2024
1 parent 3cea8d3 commit 6481ff5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/plop/plopfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default function (plop) {
message: 'Tag name? (e.g. sl-button)',
validate: value => {
// Start with sl- and include only a-z + dashes
if (!/^sl-[a-z-+]+/.test(value)) {
if (!/^(sl|mf)-[a-z-+]+/.test(value)) {
return false;
}

Expand Down

0 comments on commit 6481ff5

Please sign in to comment.