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

css-prop-sort

v1.0.2

Published

CLI to easily sort your CSS properties

Downloads

1

Readme

css-prop-sort

CLI to easily sort your CSS properties.

I watched Kevin Powell's video on sorting CSS properties and I felt inspired to make a CLI tool to do the process automatically.

NOTE: It will remove all whitespace from inside rules (whitespace separating two rules is preserved)! For this reason, make sure that you run this BEFORE Prettier or other formatting tools.

Usage

This supports any runtime that you can use ES6 in. As the engine does not require any dependencies (only the CLI does), you can use it in browsers. As this is also published as an NPM module, you can use it in Node.JS.

CLI

Requires a Node.JS version ^14.13.1 || >=16.0.0.

npx css-prop-sort <file>

where <files> is a glob pattern with files to sort properties in. Note it must be a glob pattern to files, not directories. You can separate multiple patterns with spaces. Default: **.css, which matches all CSS files in the CWD recursively.

The optional argument -c or --config can be used to specify a configuration file. If you do not specify a configuration file, it will search upwards for a package.json file with a cssPropSort propery. If it is not found, it will search upwards for each of the following and use the first one it finds: cssPropSort.config.json cssPropSort.config.js cssPropSort.config.cjs cssPropSort.config.mjs. If none of those are found, the default configuration will be used. To force it to use the default configuration, add "cssPropSort": {} to your package.json file.

Node.JS API

Requires a Node.JS version ^12.20.0 || ^14.13.1 || >=16.0.0.

npm install css-prop-sort
import sortCssProperties from "css-prop-sort";
import parseCssSortConfig from "css-prop-sort/config";

sortCssProperties(
	"a { color: blue; text-decoration: none; }",
	parseCssSortConfig(/* Object with configuration */)
);

Both parameters are required.

If you want to use the default configuration you have two options:

import sortCssProperties from "css-prop-sort";
import parseCssSortConfig from "css-prop-sort/config";

sortCssProperties("a { color: blue; text-decoration: none; }", parseCssSortConfig({}));

or

import sortCssProperties from "css-prop-sort";
import defaultCssSortConfig from "css-prop-sort/config.default";

sortCssProperties("a { color: blue; text-decoration: none; }", defaultCssSortConfig);

Browser Usage

Requires any browser with ES6 support.

You can either import the library directly from a CDN like UNPKG or jsDeliver, download & host it yourself, or use a bundling tool such as Webpack or Parcel.

The API is the same as the Node.JS one.

Configuration

| Property | Description | TypeScript-Style Type | Default | | --- | --- | --- | --- | | extend | NPM package containging configuration to extend. Alternatively, this may be a boolean. true to extend the default configuration. false to write this configuration from scratch. | boolean \| string | true | | comment | Function to generate comments. Alternatively, this may be an array with two items: what to put before the comment, and what to put after. (Note that arrays are not supported with extend: false.) Array example: ["\n/* "," *\/"]. | ((group: string, config: RawConfig) => string) \| [string, string] | (group, { groups }) => (group === groups[1][0] ? "" : "\n/* " + group + " *\/") | | defaultGroup | The default group to put properties in if they don't fit in any other. | string | "miscellaneous" | | glob | Options to pass on to globby. Note that some options are not allowed to be overriden. | Omit<GlobbyOptions, "absolute" \| "onlyFiles" \| "unique" \| "markDirectories" \| "objectMode" \| "onlyDirectories" \| "stats"> | { dot: true, gitignore: true } | | groups | The groups to orginize the properties in. Each element of the array is another array of two elements. The first is the name of the group. The second is an array of properties this group contains. You may use a wildcard at the end of property names only. You may configure the wildcard used in the config.wildcard property. See an example at the link over there 👉. (Important note for if extend is false: Math with 0 is weird, and since array indexes start at 0, the first element in the array must be ["", []] so I can avoid that weird math xD. This is taken care of for you if extend is not false.) | [string, string[]][] | See https://github.com/RedGuy12/css-prop-sort/blob/main/src/config.default.js#L13-L174 | | wildcard | Wildcard used in the groups. Must not contain alphanumeric characters, underscores, or dashes. May be multiple characters long of desired. | string | "*" |

Bonus tip

Make a file called cssPropSort.config.js in the root of your project with the following contents:

/** @type {import("css-prop-sort/types").Config} */
const config = {};

export default config;

or if you use CJS:

/** @type {import("css-prop-sort/types").Config} */
module.exports = {};

Depending on your IDE (I tested in Visual Studio Code), it should give you IntelliSense with descriptions of each property on hover.