
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
auto-comment-bracket
Advanced tools
Add comments to closing CSS brackets to distinguish what is actually closing. Nested selectors in SCSS can be multiple levels deep which makes it hard to figure out what the parent selector is.
SCSS is probably the best thing to happen to CSS in a long time. It finally allowed us to store variables and have limited programming ability with mixin functions. It's also very useful for giving your styling code structure with its nested hierarchy. One common problem with large SASS files is that with a hierarchy multiple levels deep, it becomes difficult to tell which selector each bracket is actually closing.
Auto Comment Bracket is a tool to mark closing brackets in your CSS and SCSS files.
.level-1-2 {
.level-2-1 {
margin:250px;
.level-3-1 {
padding:10px;
}
.level-3-2 {
font-weight:700;
}
.level-3-3 {
position:relative;
}
}
.level-2-3 {
background:blue;
}
.level-2-2 {
color:green;
.level-3-1 {
font-size:14px;
}
.level-3-2 {
font-style:italic;
.level-4-1 {
color:#333;
}
}
.level-3-3 {
margin:42px;
}
}
}
.level-1-2 {
.level-2-1 {
margin:250px;
.level-3-1 {
padding:10px;
} /* ACB: // .level-3-1 */
.level-3-2 {
font-weight:700;
} /* ACB: // .level-3-2 */
.level-3-3 {
position:relative;
} /* ACB: // .level-3-3 */
} /* ACB: // .level-2-1 */
.level-2-3 {
background:blue;
} /* ACB: // .level-2-3 */
.level-2-2 {
color:green;
.level-3-1 {
font-size:14px;
} /* ACB: // .level-3-1 */
.level-3-2 {
font-style:italic;
.level-4-1 {
color:#333;
} /* ACB: // .level-4-1 */
} /* ACB: // .level-3-2 */
.level-3-3 {
margin:42px;
} /* ACB: // .level-3-3 */
} /* ACB: // .level-2-2 */
} /* ACB: // .level-1-2 */
npm install -g auto-comment-bracket
You are able to specify an output file to write the compiled CSS to. If you do not specify an output file, it will overwrite your input file.
auto-comment-bracket input.scss -o output.scss
You can easily revert the CSS back to the original file by passing -u
or --undo
.
auto-comment-bracket input.scss -u -o output.scss
It can also loop through and process files in a directory or subdirectories. It will only run on files with a .css and .scss extension. You can use -d
or --directory
to tell it to loop. The input and output options should be the directory file path.
Optionally, you can include -r
or --recursive
to go through subdirectories as well. It will attempt to preserve the folder structure if you specify an output folder.
auto-comment-bracket ./src/ -d -r -o ./dist/
If the program is breaking one or more of your sass files, you can use -e
or --exclude
followed by the filepath and it will attempt to match that file and ignore it. It currently uses a simple string match so wildcards are not necessary and will not work.
auto-comment-bracket ./src/ -d -r -e src/mixins/
FAQs
Add comments to closing CSS brackets to distinguish what is actually closing. Nested selectors in SCSS can be multiple levels deep which makes it hard to figure out what the parent selector is.
The npm package auto-comment-bracket receives a total of 0 weekly downloads. As such, auto-comment-bracket popularity was classified as not popular.
We found that auto-comment-bracket demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.