A command line interface for PostCSS-Scopify. This interface will walk the current working directory and will add user input css scope to each selector at each .css file
Example input
.foo, .boo h1 {
/* declarations */
}
Example output
#scope .foo, #scope .boo h1 {
/* declarations */
}
npm install scopify-cli -g
scopify-cli '#scope'