Skip to content
Merged

next #44

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/scripts/zeropoint-rebrand.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ async function rebrand() {
console.log('\n🔄 Updating files...');

// Replace text in files
replaceInFiles('ZeroPoint', projectName);
// Replace all occurrences of 'ZeroPoint' with the project name, with spaces removed
replaceInFiles('ZeroPoint', projectName.replace(/\s+/g, ''));
replaceInFiles('MWDelaney', author);
replaceInFiles('zeropoint', projectName.toLowerCase().replace(/\\s+/g, '-'));

Expand Down