0.1.0 • Published 8 years ago

gulp-banana v0.1.0

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

gulp-banana

🍹 Gulp plugin for compile Banana code to CSS.

Build Status Coverage Status Dependency Status devDependency Status npm npm

Install

$ npm install gulp-banana --save-dev

Usage

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

MIT License © Afonso Pacifer