simple-css-namespace
v1.0.1
Published
This is a way to simply declare a namespace for all classnames in processed css.
Downloads
1
Maintainers
Readme
simple-css-namespace
This is a way to simply declare a namespace for all classnames in processed css.
var gulp = require('gulp'),
namespace = require('simple-css-namespace');
gulp.src('stylesheet.css')
.pipe(namespace('unicorn__'))
.pipe(gulp.dest('./dest/')