postcss-footer
v1.0.0
Published
Add a footer to a file.
Downloads
3
Maintainers
Readme
postcss-footer
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.