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

cssbeautify-cli

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

cssbeautify-cli

CLI for cssbeautify

0.5.1
Source
npm
Version published
Weekly downloads
13
18.18%
Maintainers
1
Weekly downloads
 
Created
Source

NPM versionDependency StatusBuild Status

CSS Beautify CLI

CLI for cssbeautify

Installation

npm install -g cssbeautify-cli

Usage

cssbeautify-cli [options] -f filename

Options:

-a, --autosemicolon  insert a semicolon after the last ruleset                                              [default: false]
-c, --config         json config file to use
-f, --file           file to beautify
-h, --help           show this help message
-i, --indent         string used for the indentation of the declaration (spaces, tabs or number of spaces)  [default: "    "]
-o, --openbrace      the placement of open curly brace, either end-of-line or separate-line                 [default: "end-of-line"]
-s, --stdin          use stdin
-v, --version        Display program version
-w, --writefile      write output to file

Examples

cssbeautify-cli -i2 -o "separate-line" -f ololo.css
cssbeautify-cli --indent="   " -f nyan.css

Notes

  • Options from config override command line options
  • optimist introduces strange behaviour in some cases, e.g. it's impossible to pass empty indent option in the following form: -i '', but these solutions work just fine: -i0, --indent '', --indent='', --indent=0
  • The behaviour of boolean -a option is quite strange sometimes, check test/autosemicolon.js for details
  • file option is used if both file and stdin options are passed

Versions

0.5.0

  • -w (--writefile) option added

0.4.1

  • help output fixed

0.4.0

  • -s (--stdin) option added
  • node 0.8 support dropped

0.3.0

  • -c (--config) option added

0.2.1

  • some minor fixes

0.2.0

  • file is now passed in -f (--file) option

0.1.0

  • options -a (--autosemicolon), -h (--help), -i (--indent), -o (--openbrace), -v (--version)
  • file is passed as anonymous option

Keywords

cssbeautify

FAQs

Package last updated on 17 Dec 2015

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