Skip to content

Instantly share code, notes, and snippets.

@co3moz
Last active December 7, 2020 19:28
Show Gist options
  • Save co3moz/007d077f47b718b78d11cca67fc1d826 to your computer and use it in GitHub Desktop.
Save co3moz/007d077f47b718b78d11cca67fc1d826 to your computer and use it in GitHub Desktop.
*.css to *.module.css

SEARCH

(?<!:local\(|:global\()(\.[a-zA-Z\-0-9]+)(?!;)

Note: don't forget to skip numbers

REPLACE TO

:global($1)

SEARCH

:local\((\.[a-zA-Z0-9\-]+)\)

REPLACE TO

$1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment