0.1.0 • Published 10 years ago
pacificator v0.1.0
Pacificator.js
inspired by Idiomatic CSS.
What does it do?
Adds a standard syntax and indentation to css.

How to install
Verify if you have node and npm installed.
Command Line
$ npm install -g pacificatorModule
$ npm install pacificatorCommand Line Usage
Output the css pacificated.
$ pacificator <path>Output the css pacificated and choose the amount of tabs for indentation.
$ pacificator -t <path> <integer>Output the css pacificated and choose the amount of spaces for indentation.
$ pacificator -s <path> <integer>Show the project version.
$ pacificator --versionShow all available commands.
$ pacificator --helpModule Usage
var pacificator = require('pacificator'),
path = 'somePath/file.css';
/* Output the css pacificated. */
var output = pacificator.pacificate(path);
/* Output the css pacificated
and choose the amount of tabs for indentation. */
var output = pacificator.pacificateTab(path, 1);
/* Output the css pacificated
and choose the amount of spaces for indentation. */
var output = pacificator.pacificateSpace(path, 2);Not supported yet
- media queries syntax
- @charset syntax
- Shorthand syntax
- Other selectors (ex: .abc > a) syntax
- Animation syntax
Contributing
Want to contribute? Follow these recommendations.