gulp-banana
v0.1.0
Published
Gulp plugin for compile Banana code to CSS.
Maintainers
Readme
gulp-banana
🍹 Gulp plugin for compile Banana code to CSS.
Install
$ npm install gulp-banana --save-devUsage
const gulp = require('gulp');
const banana = require('gulp-banana');
gulp.task('banana', () => {
gulp.src(['src/**.bnn'])
.pipe(banana())
.pipe(gulp.dest('dist'));
});
gulp.task('default', ['banana']);Options
gulp.task('banana', () => {
gulp.src(['src/**.bnn'])
.pipe(banana({
bnnVariable = true,
bnnImport = true,
compress = false
}))
.pipe(gulp.dest('dist'));
});All options have true as default value, except the compress. View all
Versioning
To keep better organization of releases we follow the Semantic Versioning 2.0.0 guidelines.
Contributing
Find on our issues the next steps of the project ;) Want to contribute? Follow these recommendations.
History
See Releases for detailed changelog.
