0.1.0 • Published 10 years ago
gulp-banana v0.1.0
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.
License
0.1.0
10 years ago