Git Product home page Git Product logo

gulp-elm

Build Status

A plugin to compile Elm files with Gulp (or other Vinyl sources). The latest version (0.8.x) only supports Elm 0.19, use 0.7.x to compile earlier versions of Elm.

Example

var gulp = require('gulp');
var elm  = require('gulp-elm');

gulp.task('elm', function(){
  return gulp.src('src/Main.elm')
    .pipe(elm({ optimize: true }))
    .pipe(gulp.dest('dist/'));
});

gulp.task('elm-bundle', function(){
  return gulp.src('src/**/Main.elm')
    .pipe(elm.bundle('bundle.js', { optimize: true }))
    .pipe(gulp.dest('dist/'));
});

API

elm(options) / elm.make(options)

compile elm files.

options

  • elm (default: "node_modules/.bin/elm" if it exists, otherwise "elm")

    elm executable file.

  • cwd (default: current working directory)

    The working directory in which to execute elm (this should be the directory with elm.json).

  • filetype (default: "js")

    elm output file type.

    "js" (or "javascript") or "html".

  • optimize (default: false)

    add --optimize option to elm

  • debug (default: false)

    add --debug option to elm

elm.bundle(output, options)

compile and bundle elm files into a single file.

output

you must pass the name of the output file

options

  • elm (default: "node_modules/.bin/elm" if it exists, otherwise "elm")

    elm executable file.

  • cwd (default: current working directory)

    The working directory in which to execute elm (this should be the directory with elm.json).

  • optimize (default: false)

    add --optimize option to elm

  • debug (default: false)

    add --debug option to elm

Changes

  • 0.8.2
    • Update confusing error message (fixes #46, thanks @barbeque!)
  • 0.8.1
    • Fix error when compiling file with no output (fixes #37)
  • 0.8.0
    • Elm 0.19 support (drops support for Elm 0.18 and lower)
    • Thanks to @vodik from @sangoma for help with this upgrade!
  • 0.7.3
    • Support Gulp 4 and Node.js 10
  • 0.7.x
    • Add cwd option
  • 0.6.x
    • Add debug option for Elm 0.18

gulp-elm's Projects

gulp-elm icon gulp-elm

Gulp plugin that compiles Elm files to JavaScript.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.