New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

auto-comment-bracket

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

auto-comment-bracket

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.

  • 1.1.6
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-33.33%
Maintainers
1
Weekly downloads
 
Created
Source

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/

Keywords

FAQs

Package last updated on 25 Nov 2020

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc