Skip to content

Commit 0c3662a

Browse files
committed
fix: 🐛 (customizsation) bracket mistake
1 parent c60208f commit 0c3662a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Diff for: tools/customization.mjs

+3-1
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,12 @@ function renameCamelCases(libraryName) {
101101
to: camelcase(libraryName)
102102
}
103103

104+
console.log('caps and capitalized', capitalize(camelcase(LIBRARY_NAME)));
105+
104106
const capsReplaceOptions = {
105107
ignore: 'node_modules/**/*',
106108
files: '**/*.{ts,html,json,scss,js}',
107-
from: new RegExp(capitalize(camelcase(LIBRARY_NAME), 'g')),
109+
from: new RegExp(capitalize(camelcase(LIBRARY_NAME)), 'g'),
108110
to: capitalize(camelcase(libraryName))
109111
}
110112

0 commit comments

Comments
 (0)