We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 97bf177 + a96a86e commit fda7e1eCopy full SHA for fda7e1e
.github/scripts/zeropoint-rebrand.js
@@ -72,7 +72,8 @@ async function rebrand() {
72
console.log('\n🔄 Updating files...');
73
74
// Replace text in files
75
- replaceInFiles('ZeroPoint', projectName);
+ // Replace all occurrences of 'ZeroPoint' with the project name, with spaces removed
76
+ replaceInFiles('ZeroPoint', projectName.replace(/\s+/g, ''));
77
replaceInFiles('MWDelaney', author);
78
replaceInFiles('zeropoint', projectName.toLowerCase().replace(/\\s+/g, '-'));
79
0 commit comments