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
# Find all JS files and Replace old with new tag using : as seperator for sed
find . -type f -name '*.js' -exec sed -i 's:my-component:mynext-component:g' {} \;
# Mass Rename files replace myname with some parts of the filename to change
find . -name '*myname*' -exec bash -c 'mv $0 ${0/myname/newname}' {} \;
if you still think we should put that into the generator ping me but i think it can be simply copy pasted into own dotfiles or own bash script.
If someone suggests a better name for a modulet it would be a big time saver to have a quick way to rename the files and component tag.
The text was updated successfully, but these errors were encountered: