postcss-footer

1.0.0 • Public • Published

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

Package Sidebar

Install

npm i postcss-footer

Weekly Downloads

2

Version

1.0.0

License

MIT

Last publish

Collaborators

  • chenfengyuan