Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

postcss-progress

brandonocasey659Apache-2.01.1.1

Print the current files being processed, time taken, and when a file is written during postcss.

readme

postcss-progress

Print the current files being processed, time taken, and when a file is written during postcss.

Installation

$ npm install --save-dev postcss-progress

Then require that plugin in your code and use it:

var progress = require('postcss-progress');

...
plugins: [
  progress.start()
  // insert other plugins here
  progress.stop()
];
..

Now when you run postcss you will get the following output, but it will also be colored.

src/index.css → dist/foo.css...
created dist/foo.css in 216ms

changelog

1.1.1 (2019-01-14)

Chores

  • update tooling and switch to colorette (4fdbc23)
  • package: use @videojs/generator-helpers and update packages (bf2a190)