// file.scss
.selector {
.selector2 {
.selector3 {
}
}
}
.other_selector {
color: red;
}
// file.scss
.other_selector {
color: red;
}
// file.scss
.button {
background: #a7ef6f;
border-radius: 8px;
transition: all 0.15s;
cursor: pointer;
&:hover {
opacity: 0.7;
background-color: red;
}
&:disabled {
background: green;
cursor: not-allowed;
color: white;
}
}
// file.scss
.button {
background: #a7ef6f;
border-radius: 8px;
transition: background-color 0.15s, color 0.15s, opacity 0.15s;
cursor: pointer;
&:hover {
opacity: 0.7;
background-color: red;
}
&:disabled {
background: green;
cursor: not-allowed;
color: white;
}
}
bun install
bun run index.ts
Q: Does it work with nested folders?
A: Yes, it does.
Q: Does it work with nested selectors?
A: Yes, it does.
Q: Can I use it without having to install dependencies?
A: Yes, please view the releases section.
Q: Does it create backups just in case?
A: Yes, it does. After running the executable or via npm run start
, you will be prompted:
Do you want to create backups for each modified file? (Y/n)
Please see the Contributing guideline.