This package has been deprecated

Author message:

This package is deprecated

gulp-cola

0.1.3 • Public • Published

Gulp Cola

ColaScript compiler plugin for Gulp.

Installation

Firstly, make sure you have installed the latest version of node.js (You may need to restart your computer after this step).

From NPM for programmatic use:

$ npm install gulp-cola

Usage

var cola = require('gulp-cola');
 
gulp.task('compile', function() {
    gulp.src('app/*.cola')
        .pipe(cola())
        .pipe(gulp.dest('dist'))
});

Options

  • is_node

    Pass true to compilation for node.

  • modules

    Pass an object if you wish to specify modules.

  • main_binding

    Pass false to disable wrapping of main function.

  • mangle

    Pass false to skip mangling names.

  • output

    Pass an object if you wish to specify additional output options. The defaults are optimized for best compression.

  • compress

    Pass an object to specify custom compressor options. Pass false to skip compression completely.

  • preserveComments

    A convenience option for options.output.comments. Defaults to preserving no comments.

    • all

      Preserve all comments in code blocks

    • some

      Preserve comments that start with a bang (!) or include a Closure Compiler directive (@preserve, @license, @cc_on)

    • function

      Specify your own comment preservation function. You will be passed the current node and the current comment and are expected to return either true or false.

Package Sidebar

Install

npm i gulp-cola

Weekly Downloads

1

Version

0.1.3

License

MIT

Last publish

Collaborators

  • npm