1.0.0 • Published 7 years ago

postcss-footer v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

postcss-footer Build Status

Add a footer to a file.

Install

npm install postcss-footer --save-dev

Usage

const postcss = require('postcss');
const footer = require('postcss-footer');
const result = postcss(footer({
  footer: '/* A simple footer */',
})).process('.foo{}');

console.log(result);
// > .foo{}/* A simple footer */

Options

footer

  • Type: String
  • Default: ''

The string which will be put at the end of the css file.

License

MIT © Fengyuan Chen