npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

auto-comment-bracket

v1.1.6

Published

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.

Downloads

22

Readme

Automatically mark each closing bracket with its selector in CSS and SCSS files

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.

Before

.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;
    }
  }
}

After

.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 */

Installation

npm install -g auto-comment-bracket

Usage

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

Undo

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

Directory

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/

Exclude

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/