• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

gulp-elm/gulp-elm: Gulp plugin that compiles Elm files to JavaScript.

原作者: [db:作者] 来自: 网络 收藏 邀请

开源软件名称(OpenSource Name):

gulp-elm/gulp-elm

开源软件地址(OpenSource Url):

https://github.com/gulp-elm/gulp-elm

开源编程语言(OpenSource Language):

JavaScript 94.1%

开源软件介绍(OpenSource Introduction):

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



鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap