0.7.1 • Published 6 years ago

creamify v0.7.1

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

creamify

Cream & Sugar Transformer for use with browserify

Adapted from babelify (https://github.com/babel/babelify)

Usage

Here is a gulp example. You'll get the picture :)

var gulp       = require('gulp');
var browserify = require('browserify');
var creamify   = require('creamify');
var source     = require('vinyl-source-stream'); // <- standard re-gulpification

gulp.task('cns', function () {
  return browserify({entries: ['/path/to/entry.cns'], extensions: ['.cns']})
         .transform(creamify)
         .bundle()
         .pipe(source('app.js'))
         .pipe(gulp.dest('path/to/output_directory'));
});
0.7.1

6 years ago

0.7.0

7 years ago

0.6.9

7 years ago

0.6.8

7 years ago

0.6.7

7 years ago

0.6.6

7 years ago

0.6.5

7 years ago

0.6.4

7 years ago

0.6.3

7 years ago

0.6.2

7 years ago

0.6.1

7 years ago

0.6.0

7 years ago

0.5.1

7 years ago

0.5.0

7 years ago

0.4.1

7 years ago

0.4.0

7 years ago

0.3.0

8 years ago

0.2.0

8 years ago

0.1.3

8 years ago

0.1.2

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago

0.0.1-alpha5

8 years ago

0.0.1-alpha4

8 years ago

0.0.1-alpha3

8 years ago

0.0.1-alpha2

8 years ago

0.0.1-alpha1

8 years ago

0.0.0-alpha2

8 years ago

0.0.0-alpha1

8 years ago